:root{
    --grey-700: hsl(0, 0%, 20%);
    --grey-800: hsl(0, 0%, 12%);
    --grey-900: hsl(0, 0%, 8%);
    
    --base-text-color: hsl(0, 0%, 100%);
    --accent-color: hsl(75, 94%, 57%);
    --base-font-size: 14px;
    --base-font-family: Inter;
    
    /* - Weights: 400, 600, 700 */
}

*, *::before, *::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    min-height: 100vh;
    background-color: var(--grey-900);
    display: flex;
    justify-content: center;
    align-items: center;

    font-family: var(--base-font-family);
    color: var(--base-text-color);
}

.profile-card{
    width: 320px;
    height: 510px;
    background-color: var(--grey-800);
    padding: 30px;
    border-radius: 10px;
}

.profile-header{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-image{
    border-radius: 50%;

    width: 75px;

    margin-bottom: 24px;
}

.profile-name{
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}

.profile-location{
    color: var(--accent-color);
    font-size: 12px;
    font-weight: 600;

    margin-bottom: 22px;
}

.profile-bio{
    font-family: "inter";
    font-size: 12px;
    color: hsl(0, 0%, 75%);

    margin-bottom: 22px;

}

.social-nav{
    width: 100%;
}

.social-nav ul{
    list-style: none;

    width: 100%;
    
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 13px;

}

.social-nav li{
    width: 100%;
}

.social-nav a{
    border-radius: 6px;

    font-family: "inter";
    font-weight: 700; 
    font-size: 12px;
    text-decoration: none;
    color: var(--base-text-color);

    width: 100%;
    padding: 12px 0px;

    background-color: var(--grey-700);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: background-color 0.15s
}

.social-nav a:hover{
    background-color: var(--accent-color);
    color: var(--grey-800);
}

@media (max-width: 376px) {
    .profile-card{
        height: 480px;
        width: 300px;
        padding: 15px;
    }
}