:root {
  font-size: 16px;
  --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%);
}
body {
  background-color: var(--Grey-900);
  color: var(--White);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  min-height: 100vh;
}
body p {
  font-size: 14px;
}
main {
  background-color: var(--Grey-800);
  width: 90%;
  padding: 1.5rem 0;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 0.75rem;
}
main section.profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
header img {
  border-radius: 50%;
  display: block;
  width: 80px;
}
header h1 {
  font-family: inter-regular;
  margin-bottom: 0;
}
header p.location {
  color: var(--Green);
  font-family: inter-semi;
  font-size: 0.84em;
  margin-top: 7px;
}
p.bio {
  font-family: inter-regular;
  font-size: 0.8em;
  margin: 0;
}
nav.social-links {
  display: flex;
  justify-content: center;
  width: 90%;
}
nav.social-links ul {
  list-style: none;
  padding: 0;
  width: 100%;
  margin-top: 10px;
}
nav.social-links ul li {
  background-color: var(--Grey-700);
  margin: 12px;
  padding: 10px;
  border-radius: 0.5rem;
}
nav.social-links ul li a {
  text-decoration: none;
  color: var(--White);
  font-family: inter-semi;
  font-size: 0.8em;
}
nav.social-links ul li:hover {
  background-color: var(--Green);
}
nav.social-links ul li:hover a {
  color: var(--Grey-900);
}
footer a {
  color: var(--White);
  text-decoration: none;
  padding: 5px;
  border-radius: 5px;
  transition: 0.3s;
}
footer a:hover {
  background-color: var(--Grey-700);
  color: var(--Green);
}
/* 576 */
@media screen and (min-width: 580px) {
  main {
    width: 340px;
  }
}

@font-face {
  font-family: inter-bold;
  src: url(../assets/fonts/static/Inter-Bold.ttf);
}
@font-face {
  font-family: inter-regular;
  src: url(../assets/fonts/static/Inter-Regular.ttf);
}
@font-face {
  font-family: inter-semi;
  src: url(../assets/fonts/static/Inter-SemiBold.ttf);
}
