:root{
    --back-color:#c4f82a;
    --button-color:#333333;
    --color-card:#1f1f1f;
}
body{
    background-color: black;
    font-family: 'inter',sans-serif;
}
.card{
    width: 300px;
    height: 500px;
    background-color: var(--color-card);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    border-radius:20px;
}
.img img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-left: 94px;
}
.img h3{
    color: white;
    font-size: 20px;
    font-weight: lighter;
    text-align: center;
}
.img p{
    font-size:10px ;
    text-align: center;
    color: var(--back-color);
}
.buttons p{
    font-size: small;
    text-align: center;
    color: var(--button-color);
}
.buttons button{
    display: flex;
    justify-content: center;
    align-items:center;
    margin-top:10px ;
    width: 250px;
    height: 40px;
    text-align: center;
    cursor: pointer;
    border-radius:5px ;
    background-color: var(--button-color);
    color: white;
    transition: 0.5s;
}


.buttons button:hover{
    background-color: var(--back-color);
    
}
@media (max-width: 480px) {
.card {
    width: 90%;
    height: auto;
    padding: 20px 15px;
}

.img img {
    width: 60px;
    height: 60px;
}

.img h3 {
    font-size: 18px;
}

.img p {
    font-size: 10px;
}

.description {
    font-size: 10px;
    margin-bottom: 15px;
    }

.buttons button {
    width: 100%;
    height: 38px;
    font-size: 14px;
    }
}
