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

}
/* Inter Regular */
@font-face {
  font-family: 'Inter';
  src: url('./assets/fonts/static/Inter-Regular.ttf') format('truetype');
  font-weight: 400;
}

/* Inter SemiBold */
@font-face {
  font-family: 'Inter';
  src: url('./assets/fonts/static/Inter-SemiBold.ttf') format('truetype');
  font-weight: 600;
}

/* Inter Bold */
@font-face {
  font-family: 'Inter';
  src: url('./assets/fonts/static/Inter-Bold.ttf') format('truetype');
  font-weight: 700;
}
/* body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

h1 {
  font-weight: 700;
}

p.important {
  font-weight: 600;
} */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
img{
    display: inline-block;
    max-width: 100%;
    height: auto;
    border-radius: 50%;
}
body{
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    background-color: var(--Grey900);
    color: var(--White);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.profile-container{
    background-color: var(--Grey800);
    border-radius: 20px;
    text-align: center;
    padding-inline: 30px;
    /* max-width: 375px; */
}
figure{
    margin-bottom: 15px;
}
figure img{
    width: 50%;
}
figcaption{
    color: var(--White);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}
.location{
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--Green);
    font-size: 15px;
    margin-bottom: 15px;
}
p{
    font-size: 14px;
    margin-bottom: 20px;
}

ul{
    list-style-type: none;
}
li{
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    background-color: var(--Grey700);
    padding: 15px 0px 15px 0px;
    margin: 20px 0px 20px 0px;
    border-radius: 10px;
}
li:hover, li:focus{
    background-color: var(--Green);
    color: var(--Grey900);
    cursor: pointer;
}


.attribution {
    font-size: 11px;
    text-align: center;
    margin-top: 10px;
}
.attribution a {
    color: hsl(228, 45%, 44%);
}