body {
    margin: 0;
    background-color: #e07a5f;
    color: #fff;
    font-family: system-ui, sans-serif;
}

main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    width: 400px;
    height: 450px;
    background-color: #22202a;
    border-radius: 15px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.card-avatar {
    margin-top: 50px;
}

.card-title {
    margin-top: -20px;
    margin-bottom: -20px;
}

.card-social ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;

    display: flex;
    gap: 32px;
}

.card-social a {
    color: #f0f0f0;
}

.card-social a svg {
    width: 32px;
    height: 32px;
    transition: transform 0.2s ease;
}

.card-social a:hover svg {
    transform: scale(1.15);
}

.card-description a {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 6px;

    background-color: #2b2b35;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

.card-description a:hover {
    background-color: #3a3a46;
}
