@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&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');

body{
    background-color: rgb(8, 8, 8);
    /* z-index:-2; */
}
* {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}
.header{
    height: 40px;
    background-color: rgb(8, 8, 8);
    box-shadow: 2px 2px 2px rgb(18, 18, 18);
    width: 100%;
}
.logo{
    margin-top:20px;
    margin-left: 40px;
}
.user{
    display:flex;
    flex-wrap: wrap;
    color: white;
    width:80vw;
    margin: auto;
    column-gap:20px;
    justify-content: center;
    align-items: center;

}
 h1{
    font-weight: 500;
    font-size: 40px;
    text-align: center;
    color: white;
    margin-top: 70px;
    margin-bottom: 20px;
    
}
.user img{
    width:200px;
    /* border-radius: 20px; */
    cursor: pointer;
}
p{
    text-align: center;
}
small{
    font-size: 15px;
    color: black;
}
h3{
    font-size: 30px;
    font-weight: 500;
    height: 50px;
    width:150px;   
    background-color: rgb(19, 18, 18);
    color: rgb(238, 236, 236);
    border: 2px solid wheat;
    text-align: center;
    
}
.button{
   width: 100%;
   display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 70px;
    cursor: pointer;
}
.user img:hover{
    background-color: rgba(211, 210, 210, 0.5);
    opacity:0.44;

}
.button :hover{
    background-color: rgb(183, 183, 183);
    color:black;
    opacity:0.69;

}
