*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scrollbar-face-color: #00000000;
}
html::-webkit-scrollbar{
    -webkit-appearance:none;
    appearance: none;
    background-color: rgb(0, 0, 0);
}
html::-webkit-scrollbar-thumb{
    -webkit-appearance: none;
    appearance: none;
    background-color: #3f3d3d;
    border-radius: 30px;
}
html::-webkit-scrollbar-thumb:hover{
   background-color: rgb(87, 82, 82);
}
body{
    background-color: #000000;
    color:#fff;
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-family: "Audiowide",'Times New Roman';
}
body ::selection{
    background-color: #fff;
    color: #000;
}
.logo-container{
    display: flex;
    justify-content: center;
}
.logo{
    height: 200px;
}
header{
    /* justify-content: center;
    place-items: center; */
    /* border: solid white; */
    background: url(Images/Nice\ dark\ background\ image.jpg);
    padding: 1%;
    background-size: cover;
    padding-bottom: 10%;
}
.form-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    place-items: center;
    margin-top: 5%;
}
form{
    display: flex;
}
button{
    cursor: pointer;
    background-color: red;
    color:#fff;
    font-weight: 800;
    padding: 3%;
    transition: 0.5s;
    border: none;
}
button:hover{
    color: #000;
    background-color: #bb0000;
    font-weight: 900;
}
input{
    padding-left: 2%;
    height: 55px;
    word-spacing: 2px;
    position: relative;
}
.header-text{
    font-size: 28px;
    display: flex;
    text-align:center;
    flex-direction: column;
    justify-content: center;
    place-items: center;
}
.header-text h1{
    -webkit-text-stroke-color: gray;
    -webkit-text-stroke-width: 2px;
}
@supports (background-clip: text) {
    .header-text h1 {
    background: linear-gradient(60deg,silver,gray);
    background-clip: text;
    color: transparent;
    }
  }
.header-text h2{
    font-weight: 300;
}
.about-us{
    background: url(Images/bubbles-black-background_23-2149345701.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    padding: 10%;
    font-size: 16px;
    color: rgb(214, 222, 247);
}
.about-us1, .about-us2, .about-us3{
    border: 1.5px solid red;
    margin-left: 2%;
    padding: 3%;
    border-radius: 30px;
}
footer{
    background-color: red;
    text-align: center;
    padding: 1%;
}
footer ul{
    display: flex;
    justify-content:space-around;
}
footer ul li{
    list-style-type: none;
}
footer ul li a{
    color:rgb(0, 0, 0);
    text-decoration: none;
    font-weight: 700;
}
footer ul li a::after{
   content: '';
   background-color: #000;
   width: 0%;
   height: 1px;
   display: flex;
   transition: 1s;  
}
footer ul li a:hover::after{
    width: 100%;
}
@media screen and (max-width:480px){
    .header-text {
        font-size: 20px;
    }
    form{
        display: block;
    }
    input[type="email"]{
        width: 90%;
        margin-left: 5%;
    }
    button{
       display: flex;
       margin-left: 39%;
       margin-top: 4%;
    }
    .about-us{
        display: block;
        margin: 0;
    }
    .about-us1, .about-us2, .about-us3{
        margin: 0;
        margin-bottom: 20px;
    }
    footer ul {
        display: block;
    }
    footer ul li{
        margin-bottom: 2%;
    }
}
@media screen and (min-width:481px) and (max-width:1250px){
    form{
        display: block;
    }
    input[type="email"]{
        width: 90%;
        margin-left: 5%;
    }
    button{
       display: flex;
       margin-left: 40%;
       margin-top: 4%;
    }
    .about-us{
        display: block;
        margin: 0;
    }
    .about-us1, .about-us2, .about-us3{
        margin: 0;
        margin-bottom: 20px;
        margin-left: 0;
    }
    footer ul {
        display: block;
    }
    footer ul li{
        margin-bottom: 2%;
    }
}