body {
    margin: 0;
    background: radial-gradient(circle at top, rgb(40, 40, 40), rgb(18, 18, 18) 60%);


    color: rgb(220, 210, 190);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.card {
    background-color: rgb(28, 28, 28);
    width: 250px;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.description {
    color: rgb(160, 160, 160);
    margin-bottom:  30px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.links a {
    text-decoration: none;
    background-color: rgb(40, 40, 40);
    color: rgb(220, 210, 190);
    padding: 14px;
    border-radius: 14px;
    transition: 0.2s;
}

.links a:hover {
    background-color: rgb(60, 60, 60);
    transform: translateY(-3px);
}

.links a:active {
    transform: scale(0.96);
}