@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');
:root{
    --mainColor:#222831;
    --textColor:#EEEEEE;
    --styleColor:#00ADB5;
    --btnColor:#393E46;
}
*{
    margin: 0;
    padding: 0;
    color: var(--textColor);
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
body{
    background: var(--mainColor);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60vh;

}
.container{
    max-width: 500px;
    width: 100%;
    border: 2px solid rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 5px 4px rgba(0, 0, 0, 0.3) ;
    margin: 0 8px;
    text-align: center;
    border-radius: 20px;
}
#name{
    font-size: 2em;
}
#name span{
    background: var(--styleColor);
    font-weight: 600;
    background-clip: text;
    color: transparent;
}
#des{
    padding: 20px;
    font-size: 1.2em;
}
button{
    background: var(--btnColor);
    padding: 5px 20px;
    font-size: 1.2em;
    border-radius: 10px;
    margin: 15px;
    border: none;
    box-shadow: 0 0 5px 5px rgb(0, 0, 0,0.2);
    transition: 0.4s all;
}
button:hover{
    background:#2e3238;
}
.khlaf{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.image{
    width: 50px;
    border-radius: 50%;
}
.image img{
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.name{
    font-size: 2em;
    text-transform: capitalize;
    margin-left: 10px;
    background: var(--styleColor);
    font-weight: 500;
    background-clip: text;
    color: transparent;
}