@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

:root {
    /* Primary */

    --Green: hsl(75, 94%, 57%);

    /* Neutral */

    --White: hsl(0, 0%, 100%);
    --Grey: hsl(0, 0%, 20%);
    --Dark-Grey: hsl(0, 0%, 12%);
    --Off-Black: hsl(0, 0%, 8%);
}

body {
    background-color: black;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    color: white;
    text-align: center;
}

#container {
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    background-color: hsl(0, 0%, 12%);
    border-radius: 0.5rem;
    gap: 1.125rem;
}

#profile-picture {
    display: flex;
    justify-content: center;
    align-items: center;
}

#avatar-jessica {
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 5rem;
}

#name {
    font-size: x-large;
    font-weight: 600;
}

#location {
    color: var(--Green);
    font-weight: 700;
}

#socials {
    display: flex;
    gap: 0.625rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.social {
    background-color: hsl(0, 0%, 20%);
    border: none;
    cursor: pointer;
    color: hsl(0, 0%, 100%);
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: bolder;
    width: 100%;
}

.social:hover {
    background-color: var(--Green);
    color: var(--Off-Black);
}
