:root {
    --green: hsl(75, 94%, 57%);
    --white: hsl(0, 0%, 100%);
    --grey700: hsl(0, 0%, 20%);
    --grey800: hsl(0, 0%, 12%);
    --grey900: hsl(0, 0%, 8%);
    --fontSize: 14px;
}

@font-face {
    font-family: 'Inter';
    src: url('./assets/fonts/Inter-VariableFont_slnt,wght.ttf');
}

@media (min-width: 500px) {
    body {
        width: 100vw;
        height: 100vh;
    }

    .ProfileCard {
        margin: 0;
    }
}

* {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter';
    color: var(--white);
    background-color: var(--grey900);
}

h2 {
    font-weight: 400;
}

li {
    list-style: none;
}

.ProfileCard {
    margin: 100px 24px;
    width: 300px;
    padding: 24px;
    border-radius: 16px;
    background-color: var(--grey800);
}

.User {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.ProfilePicture {
    width: 100px;
    border-radius: 50%;
}

.UserInfo {
    text-align: center;
}

.UserName {
    margin-bottom: 8px;
}

.UserLocation {
    color: var(--green);
    font-weight: 600;
    font-size: var(--fontSize);
}

.SocialLinks {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.SocialLink {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    border-radius: 8px;
    background-color: var(--grey700);
    transition: 0.5s;
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
}

.SocialLink:hover {
    background-color: var(--green);
    transition: 0.5s;
    color: var(--grey800);
}