@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;
}

main{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 10px;
}

h1{
    text-align: center;
    padding: 5px 10px;
    margin: 10px;
    border-radius: 5px;
    background-color: white;
    color: black;
}

p{
    text-align: center;
    font-size: 22px;
    margin: 15px;
}

.amazonProduct{
    height: 10vh;
    width: 80vw;
    background-color: red;
    margin: 10px;
    display: none;
    font-size: 40px;
    font-weight: 666;
    padding: 5px 10px;
    border-radius: 5px;
}

a{
    color: red;
    text-align: center;
    text-decoration: none;
    margin: 20px;
    background-color: white;
    padding: 5px 10px;
    font-size: 40px;
    font-weight: 666;
    border-radius: 5px;
}

a:hover{
    background-color: red;
    color: white;
}

.navbar{
    width: 100%;
    height: 7vh;
    
    border: 2px solid black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.navItems{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 30%;
    margin: 10px;
}

.sTitle{
    width: 85%;
    text-align: center;
    font-size: 30px;
    font-weight: 666;
}

.logo{
    height: 7vh;
}

.navT{
    font-weight: 666;
    font-size: 25px;
    color: white;
}

.navT:hover{
    background-color: white;
    color: black;
    padding: 0px 10px;
    margin: 10px;
    
}

@media (max-width:600px) {


    h1{
        width: 90vw;
    }
    .amazonProduct{
        height: auto;
        font-size: 20px;
        width: 90vw;
    }

    a{
        width: 90vw;
    }

    .h{
        display: none;
    }
}