@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-VariableFont_slnt\,wght.ttf");
  font-weight: normal;
  font-style: normal;
}

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

body {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  background-color: var(--grey900);
  color: var(--white);
  display: flex;
  justify-content: center;
  height: 100vh;
}

.card {
  background-color: var(--grey800);
  margin: auto 0;
  max-width: 327px;
  width: 100%;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
}

.card img {
  margin: 0 auto 24px;
  width: 88px;
  border-radius: 999px;
}

.name {
  font-size: 1.5rem;
  font-weight: 700;
}

.location {
  color: var(--green);
  font-size: 0.875rem;
  font-weight: 600;
}

.caption {
  margin: 24px 0;
  font-size: 0.875rem;
}

ul {
  padding: 0;
}

li {
  font-weight: 600;
  padding: 12px;
  background-color: var(--grey700);
  border-radius: 8px;
  list-style: none;
  margin: 12px 0;
  transition: background-color 0.6s, color 0.6s;
}

li:hover {
  background-color: var(--green);
  color: var(--grey900);
  cursor: pointer;
}

@media (min-width: 375px) {
  .card {
    max-width: 384px;
    padding: 40px;
  }
}
