@font-face {
  font-family: "Inter";
  src: url(./assets/fonts/Inter-VariableFont_slnt\wght.ttf) format("truetype");
}

.attribution {
  font-size: 11px;
  text-align: center;
}
.attribution a {
  color: #3e52a3;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 87.5%;
  font-family: "Inter", sans-serif;
  background-color: #141414;
  color: #fff;
}

.card-container {
  background-color: #1f1f1f;
  max-width: 30rem;
  margin: 20rem auto 8rem;
  padding-bottom: 3.2rem;
  border-radius: 15px;
}

.card-heading {
  gap: 1.6rem;
  padding: 2.6rem 2.6rem 1.6rem;
}

.card-img {
  width: 7rem;
  border-radius: 50%;
}

.name-heading {
  font-size: 2.4rem;
  line-height: 1.5;
}

.info-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.name-heading {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 500;
}

.location-text {
  color: #c4f82a;
  font-weight: 600;
}

.headline-text {
  margin-top: auto;
}

.social-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.social-link:link,
.social-link:visited {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 9px;
  width: 24rem;
  height: 3.5rem;
  color: #fff;
  background-color: #333;
  font-weight: 600;
  transition: all 0.4s;
}

.social-link:hover,
.social-link:active {
  color: #333;
  background-color: #c4f82a;
  /* cursor: url("./assets/images/cursor.png"), auto; */
}

.flex-column-centered {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
