@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 600 700;
    font-stretch: 100%;
    font-display: swap;
    src: url('assets/fonts/Inter-VariableFont_slnt\,wght.ttf') format('truetype');
}

:root  {
    --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%);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;     
    font-family: 'Inter', sans-serif;   
}

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

main {
    width: 320px; 
    max-width: 1200px;
    padding: 20px;
    background-color: var(--grey-800);
    display: flex;
    flex-direction: column;   
    align-items: center;
    margin-bottom: 3em;
    border-radius: 10px;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

li a {
    color: inherit;
    text-decoration: none;
    font-weight: 700;
}

li:hover {
    background-color: var(--green);
    color:var(--grey-900);
    cursor: pointer;
    transition: background-color 200ms ease;
    transition: color 200ms ease;
}

.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
}

h1 {
    font-size: 24px;
    margin-bottom: 7px;
    font-weight: 600;
}   

.place {
    font-size: 0.8rem;
    color: var(--green);
    margin-bottom: 28px;
    font-weight:600; 
}

.bio {
    font-size: 0.9rem;
    margin-bottom: 20px;
}   

ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

li {
    text-align: center;
    background-color: var(--grey-700);
    padding: 10px 60px;
    border-radius: 10px;
}