:root {
    /* colors */
    --green: hsl(75, 94%, 57%);
    --white: hsl(0, 0%, 100%);
    --grey-700: hsl(0, 0%, 20%);
    --grey-800: hsl(0, 0%, 12%);
    --grey-900: hsl(0, 0%, 8%);

    /* Typography */
    --font-inter: 'Inter', sans-serif;
    --font-size-body: 14px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-inter);
    font-size: var(--font-size-body);
    background-color: var(--grey-900);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.profile-card {
    background-color: var(--grey-800);
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    max-width: 384px;
    width: 100%;
    margin-bottom: 1rem;
}

.profile-image {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.profile-location {
    color: var(--green);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.profile-bio {
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    background-color: var(--grey-700);
    color: var(--white);
    padding: 0.75rem;
    border-radius: .5rem;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--green);
    color: var(--grey-900);
}

.attribution {
    font-size: 11px;
    text-align: center;
}

.attribution a {
    color: hsl(228, 45%, 44%);
}

@media (max-width: 375px) {
    .profile-card {
        padding: 1.5rem;
    }
}