body {
    background-color: hsl(0, 0%, 8%);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter', sans-serif;
    height: 100vh;
}

.card {
    width: 375px;
    background-color: hsl(0, 0%, 12%);
    border-radius: 12px;
    text-align: center;
    justify-content: center;
    padding: 15px;
    box-sizing: border-box; 
}

@media (max-width: 375px) {
    .card {
        width: 100%;
        padding: 10px; 
    }
}


.avatar {
    width: 10vh;
    max-width: 375px;
    border-radius: 50% 50%;
    margin: 5;
}

h1 {
    color: white;
    font-weight: 400;
}

h2{
    color: hsl(75, 94%, 57%);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
}

p{
    color: white;
    font-size: 14px;
    margin-bottom: 15px;
}

.social-btn {
    background-color: hsl(0, 0%, 20%);
    width: 100%;
    border-radius: 8px;
    font-weight: 700;
    color: white;
    padding: 12px;
    margin-bottom: 16px;
    transition: all 1.2s ease;
    margin-left: auto;
    margin-right: auto;
    max-width: 304px; 
}

.social-btn:hover {
    background-color: hsl(75, 94%, 57%);
    color: hsl(0, 0%, 8%);
    cursor: pointer;
}

.social-btn:last-child {
    margin-bottom: 0;
}