@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;1,900&display=swap');


*{
    padding: 0px;
    margin: 0px;
    font-family: 'Poppins' , sans-serif;
    box-sizing: border-box;
}

body{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: black;
    color: white;
}

.navbar{
    height:7vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}

img{
    height: 7vh;
    margin: 2px;
}

.sitetitle{
    width: 70vw;
    text-align: center;
    font-weight: 666;
    font-size: 22px;
}

.navitems{
    margin: 5px;
    width: 5vw;
}

a{
    text-decoration: none;
    color: white;
    font-weight: 666;
}



h1{
    text-align: center;
    margin: 10px;
    padding: 0px 10px;
    border-radius: 5px;
    background-color: white;
    color: black;
    width: 40vw;
}

main{
        display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}



form{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 30px;
}

input{
    text-align: center;
    font-size: 20px;
    width: 30vw;
}

button{
    font-size: 18px;
    margin: 5px;
    width: 10vw;
}

button:hover{
    font-weight: 666;
}

.messageDiv{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 10px;
    text-align: center;
}

.message-success{
    text-align: center;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.displayContainer{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 30px;
    text-align: center;
}

.dataTable{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.adstra{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

h2{
    text-align: center;
    margin: 20px;
    background-color: white;
    color: black;
    padding: 0px 10px;
    width: 20vw;
    border-radius: 5px;
}

.subscribersCount{
        display: flex;
        align-items: center;
        justify-content: center;
    }

#displayBtn{
        width: 20vw;
    }

    tbody{
        text-align: center;
    }


    thead{

        text-align: center;
    }

    th{
        color: black;
        text-align: center;
    }

    td{
        text-align: center;
        
    }

    tr{
        text-align: center;
        
    }
    
    .sexyDress{
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin:10px;
}

#amazon{
    cursor: pointer;
    height: 30vh;
}

@media (max-width:600px) {
    h1{
        width: 90vw;
    }

    input{
        width: 85vw;
    }

    button{
        width: 30vw;
    }
    #displayBtn{
        width: 50vw;
    }

    h2{
        width: 90vw;
    }

    .navbar{
        width: 95vw;
        justify-content: space-between;
    }

    img{
        width: 15vw;
    }

    .sitetitle{
        width: 70vw;
    }

    .navitems{
        width: 15vw;
    }

}



