:root {
    
    --green: hsl(75, 94%, 57%);
    --white: hsl(0, 0%, 100%);

    --fonts: "Inter", sans-serif;

    --grey700: hsl(0, 0%, 20%);
    --grey800: hsl(0, 0%, 12%);
    --grey900: hsl(0, 0%, 8%);
}



body {
    background-color: var(--grey900);
    font-weight: 400;
    margin: 0;

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

#social-card {
    background-color: var(--grey800);
    font-family: var(--fonts);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

#social-card img {
    border-radius: 50%;
    width: 90px;
}

#social-card h1 {
    color: var(--white);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

#social-card h2 {
    color: var(--green);
    font-weight: 500;
    font-size: 1rem;
    margin-top: 0;
}

#social-card p {
    font-size: 14px;
    color: var(--white);
    font-weight: 200;
    margin: 2rem 2rem;
}

#social-card ul
{
    list-style: none;
    padding: 0;
    margin: 0;
}

#social-card li {
    margin: 1rem 0;
}


#social-card a {
    display: block;
    text-decoration: none;
    background-color: var(--grey700);
    color: var(--white);
    padding: 1rem;
    border-radius: 12px;
    font-weight: 700;
}

#social-card a:hover {
    background-color: var(--green);
    color: var(--grey900);

    transition: background-color .8s ease, color .3s ease;
}