*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: rgb(255, 235, 153);
}

/* MAIN CARD */
.container{ 
    width: 90%;
    max-width: 1000px;
    background-color: FloralWhite;
    border-radius: 25px;
    margin: 40px auto;
    padding: 20px 50px;
    color: rgb(117, 116, 116);
    font-family: sans-serif;
}

/* HEADINGS */
h2{
    color: black;
    font-family: serif; 
}
h1{
    color: black;
    font-size: 45px;
    line-height: 3rem;
    font-family: serif; 
}

/* NAVBAR */
nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; 
    gap: 20px;
}

.left, .center, .right{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* Buttons */
.hoster-btn{
    background-image: linear-gradient(to right, orange, rgb(255, 10, 141));
    border-radius: 20px;
    border: none;
    padding: 5px 20px;
    color: white;
}
.waitlist-btn{
    background-color: rgb(29, 163, 216);
    color: white;
    padding: 13px 20px;
    border: none;
}

input{
    padding: 10px;
    margin: 10px auto;
    width: 100%;
    max-width: 300px;
}

/* MAIN SECTION */
.main{
    line-height: 30px;
    padding: 10px;
    margin-top: 50px;
    position: relative;
}

/* RIGHT IMAGE (FLOAT FIXED) */
.aside{
    float: right;
    width: 300px;
    max-width: 100%;
    margin-top: -40px;
}

/* CHECKBOX */
.check-box{
    display: flex;
    margin-top: 10px;
    align-items: center;
}

.check{
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/* FOOTER */
footer{ 
    width: 100%;
    margin-top: 60px;
}

footer a{
    text-decoration: none;
    color: rgb(117, 116, 116);
}
.ancr{
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    font-size: 14px;
    float: inline-start;
    margin-top: 30px;

}

footer p{
    font-weight: 600;
    color: black;
    text-align: right;
    margin-right:-10px;
}
.qury{
    color: rgb(104, 103, 103);
      font-weight: 600;
}

/* TALK IMAGE */
.talk{
    float: right;
    margin-right: 160px;
    margin-top: -55px;
}

/* --- RESPONSIVE*/

/* Tablets */

@media (max-width: 992px){

    nav{
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    nav .left, 
    nav .center, 
    nav .right{
        justify-content: center;
        width: 100%;
        text-align: center;
    }

    /* main image center */
    .aside{
        float: none;
        display: block;
        margin: 20px auto 0 auto;
        width: 240px;
    }

    /* center main heading */
    h1{
        text-align: center;
        font-size: 34px;
        line-height: 2.4rem;
    }

    /* center main content */
    .main{
        text-align: center;
        margin: 20px 0;
    }

    /* input + button full center */
    input{
        width: 80%;
        max-width: 350px;
    }

    .waitlist-btn{
        width: 80%;
        max-width: 350px;
        margin-top: 10px;
    }

    /* center checkbox */
    .check-box{
        justify-content: center;
    }

    /* footer align center */
    footer p{
        text-align: center;
        margin-right: 0;
    }

    .ancr{
        justify-content: center;
        float: none;
        margin-top: 10px;
    }

    .talk{
        float: none;
        margin: 10px auto;
        display: block;
    }
}
/* Mobile */
@media (max-width: 768px){

    nav{
        text-align: center;
    }
    nav .left, nav .center, nav .right{
        justify-content: center;
    }

    .container{
        padding: 15px;
    }

    .main{
        margin: 30px 5px;
        text-align: center;
    }

    h1{
        font-size: 30px;
        line-height: 2.5rem;
    }

    .talk{
        float: none;
        margin: 20px auto;
        display: block;
    }

    footer p{
        text-align: center;
    }

    input{
        width: 100%;
    }

    .ancr{
        justify-content: center;
    }
}

/* Extra Small Devices */
@media (max-width: 480px){

    h1{
        font-size: 26px;
    }

    .waitlist-btn{
        width: 100%;
    }

    .hoster-btn{
        font-size: 13px;
        padding: 5px 15px;
    }

    .aside{
        width: 180px;
    }

    .talk{
        width: 40px;
    }
}


