@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
html {
  box-sizing: border-box;
}

*, *:before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", serif;
}

body {
  background-color: #141414;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-height: 600px) {
  body {
    padding-top: 1rem;
  }
}
@media (prefers-color-scheme: dark) {
  body {
    background-color: black;
    filter: brightness(85%);
  }
}

a:focus, a:focus-visible, a:focus-within, a:focus-visible {
  outline-width: 0.15rem;
  outline-style: solid;
  outline-color: #C4F82A;
}

.card {
  display: flex;
  width: 24rem;
  flex-direction: column;
  align-items: center;
  border-radius: 0.75rem;
  padding: 2.5rem;
  background-color: #1F1F1F;
  gap: 0.75rem;
}
@media screen and (max-width: 450px) {
  .card {
    width: 20rem;
  }
}
.card__image {
  border-radius: 50%;
  width: 5rem;
}
.card__name {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0rem;
  color: #FFFFFF;
}
.card__location {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0rem;
  color: #C4F82A;
}
.card__bio {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0rem;
  color: #FFFFFF;
  text-align: center;
}
.card__links {
  width: 100%;
  color: #C4F82A;
  list-style-type: none;
}
.card__links-button {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0rem;
  width: 100%;
  text-align: center;
  margin-top: 0.75rem;
}
.card__links-button > a {
  display: block;
  border-radius: 0.5rem;
  text-decoration: none;
  background-color: #333333;
  color: #FFFFFF;
  width: 100%;
  padding: 0.75rem;
  transition: 0.5s background-color;
}
@media (prefers-reduced-motion) {
  .card__links-button > a {
    transition: none;
  }
}
.card__links-button > a:hover {
  color: #1F1F1F;
  background-color: #C4F82A;
}

.attribution {
  padding: 0.75rem;
  font-size: 0.75rem;
  text-align: center;
  color: #FFFFFF;
}
.attribution a {
  color: inherit;
}

/*# sourceMappingURL=style.css.map */
