body{
    margin: 0px;
    display: flex;
    flex-direction: column;
}
nav{
    display: flex;
    justify-content: space-between;
    padding: 0px 5%;
}
.sign-btn{
    background-color: rgb(216, 5, 5);
    color: white;
    border: none;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    border-radius: 2px;
    padding: 0px 10px;
}
.home{
    background-image: url('./background.jpg');
    padding-top: 30px;
    background-blend-mode: luminosity;
    background: linear-gradient(black, transparent,black)
    
}
.head{
    color: white;
    text-align: center;
    padding: 50px 5%;
}
.h1{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1.5rem;
    color: white;
}
.h2,.h3{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.1rem;
    color: white;
}
.h3{
   font-weight: normal;
   padding: 0px 30px;
}
.email-inp{
    padding: 10px;
    width: 90%;
    margin-bottom: 10px;
}
.email-btn{
    padding: 12px;
    background-color: rgb(199, 1, 1);
        border: none;
        color: white;
}
.email-btn:hover{
    background-color: red;
}
.sep{
    padding: 3px;
    background-color: rgb(68, 68, 68);
}
.main{
    padding: 50px 5%;
    background-color: black;
    text-align: center;
    color: white;
}
.ques{
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0px;
}
.ques>li{
    background-color: rgb(56, 55, 55);
    color: white;
    margin-bottom: 10px;
    
}
.ques>li>div{
    display: flex;
    justify-content: space-between;
    padding: 10px;
}
.ques>li>div>h3{
    margin: 0px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: normal;
}
.footer{
    font-family: sans-serif;
    color: gray;
    text-align: left;
    margin-left: 10px;
}
.footer>ul{
    list-style: none;
    padding: 0px;
    display: flex;
    flex-flow: row wrap;
}
.footer>ul>li{
    width:130px;
    font-size: 12px;
    padding-right: 10px;
    margin-bottom: 10px;
}
.head>.h1{
    font-size: 2rem;
}
.logo{
    width: 100px;
    height: auto;
}
.main>img{
    width: 80%;
}
@media screen and (min-width:950px){
    .head>.h1{
        font-size: 5vw;
        padding:0 100px;
        margin-top:60px
    }
    .head>.h2{
        font-size: 2rem;
        font-weight: normal;
    }
    .logo{
        width:150px;
        height: auto;
    }
    .sign-btn{
        padding: 0px 20px;
        height: 30px;
        font-size: 15px;
    }
    .head>div{
        top:-120px;
        position: relative;
        display: flex;
        flex-flow: row wrap;

        justify-content: center;
    }
    .main>img{
        width:40%;
    }
    .main .h1{
        font-size: 2.5rem;
        text-align: left;
        position: relative;
        top:30px;
    }
    .main .h2{
        font-size: 2rem;
        font-weight: normal;
        text-align: left;
    }
    .email-inp{
        width: 50%;
        padding:20px;
        height: 18px;
        margin-bottom: 0px;

    }
    .main{
        display: flex;
        padding: 30px 150px;
    }
    #query{
        flex-direction: column;
    }
    #query>.h1{
        text-align: center;
    }
    .email-btn{
        height: 60px;
        font-size:25px;
        padding:2px 20px;
        background-color: rgb(199, 1, 1);
        border: none;
        color: white;
    }
    #query>div{
        display: flex;
        flex-flow: row wrap;
        position: relative;
        justify-content: center;
    }
    .head>.h3{
        font-size: 1.6rem;
        position: relative;
        top:60px;
        margin-bottom: 80px;
    }
    .footer>ul{
        padding: 15px 60px;
    }
}