@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;0,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;0,900&family=Roboto&family=TikTok+Sans:opsz,wght@12..36,300..900&display=swap');




*{
    padding: 0px;
    margin: 0px;
    font-family: 'Poppins' ,'Roboto', sans-serif;
    box-sizing: border-box; /* Added for better layout control */
}

body{
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.navBar{
    
    
    width: 100%;
    height: 7vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin: 10px;
    border-bottom: 2px solid darkgray;
    padding: 10px 10px;
    font-weight: 666;
}


main{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin: 10px;
    padding: 0px 10px;
}

a{
    text-align: center;
    text-decoration: none;
    color:white;
    font-size: 50px;
}

.amazonProducts{
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin: 10px;
    padding: 3px 10px;
    background-color: red;
    font-size: 40px;
    border-radius: 5px;
    font-weight: 666;
    cursor: pointer;
}

p{
    font-size: 20px;
    text-align: center;
    margin: 10px;
    padding: 5px 10px;
}

.feebback{
    width: 70vw; 
    background-color: white; 
    height: 15vh; 
    border-radius: 5px;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content:center;
    flex-direction: column
}



#yes{
    background-color: green;
    width: 7vw;
    font-size: 30px; 
    cursor: pointer;
    margin: 5px;

}

#no{
    background-color: red;
    width: 7vw;
    font-size: 30px; 
    cursor: pointer;
    margin: 5px;
}

form{
    display: flex;
    align-items: center;
    content: space-between; 
    width: 20vw;
}

@media (max-width:600px) {
    .navBar{
        font-size: 20px;
    }
    p{
        width: 90vw;
    }
    .amazonProducts{
        width: 90vw;
        font-size: 18px;
    }

    .feebback{
        width: 90vw;
    }

    form{
        width: 90vw;
        display: flex;
    }

    #yes , #no{
       width: 40vw;
       margin: 5px;
    }


}