
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,600&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Oswald&family=Outfit:wght@600&family=Roboto:ital,wght@0,100..900;1,100..900&family=Teko&display=swap');

:root{
    --Green-body:#151919;
    --color-box1:#333333;
    --White:#ececec;
    --color-houvre:#c4f82a ;

    
}
*{
    padding: 0;
    border: 0;
    box-sizing:border-box ;
    font-family:DM Sans,'sans-serif';
}
body{
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    min-height: 100vh;
    background:var(--Green-body);
}
.container{
    padding: 40px;
    border-radius: 10px;
    background: #1f1f1f;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.container .profile {
    display: flex;
    justify-content: center;
    align-items: center;
}
.container .profile img{
    top: 0;
    border-radius: 50%;
    width: 90px; 
}
.container .user{
    text-align: center;
    font-size: 20px;
    
}
.container .lise1 .box1 {
    padding: 10px 10px 10px ;
    background-color:var(--color-box1);
    top: 10px;
    border-radius: 10px;
    margin: 10px;
    text-align: center;
    color: var(--White);
}   
.container .lise1 .box1:hover{
    background:var(--color-houvre);
    cursor: pointer;
    color: var(--color-box1);
    
}
.container  .user h2{
    text-align: center;
    color:var(--White) ;
    font-weight: 900;
} 
.container  .user h3{
    color:var(--color-houvre) ;
    font-size: 18px;
    font-weight: 300;
}
.container .user p{
    color:var(--White);
    top: 5px;
    padding: 5px;
}
.copyright {
    color: var(--White);
}
.copyright a {
    color: var(--color-houvre);
    text-decoration: none;

}
/* &=====================medai ============================== */
@media (max-width:767px) {
    .container{
        padding: 10px;
        height: 100%;
        max-height: 600px;
        max-width: 330px;

}
}