@font-face {
  font-family: "Inter";
  src:
    local("Inter"),
    url("./assets/fonts/Inter-VariableFont_slnt\,wght.ttf"),
    url("./assets/fonts/static/Inter-Regular.ttf"),
    url("./assets/fonts/static/Inter-SemiBold.ttf"),
    url("./assets/fonts/static/Inter-Bold.ttf")
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

.main {
  height: 100vh;
  display: flex;
  flex-direction: column;
  color: white;
  background-color: #141414;
  align-items: center;
}

.content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card {
  width: 327px;
  padding: 24px;
  background-color: #1f1f1f;
  text-align: center;
  border-radius: 10px;
}

.personal img {
  width: 90px;
  border-radius: 50%;
}

.name {
  margin-top: 24px;
  font-weight: 500;
  font-size: 24px;
}

.location {
  margin-top: 8px;
  font-weight: 500;
  font-size: 14px;
  color: #c5f82a;
}

.occupation {
  margin-top: 24px;
  font-weight: 200;
  font-size: 14px;
}

.links {
  margin-top: 8px;
}

.links button {
  width: 100%;
  height: 45px;
  background-color: #333333;
  color: white;
  font-weight: 500;
  font-size: 14px;
  border: none;
  border-radius: 10px;
  margin-top: 16px;
}

.links button:hover, .links button:focus {
  background-color: #c5f82a;
  color: #141414;
  cursor: pointer;
}

.attribution {
  font-size: 11px; text-align: center;
}

.attribution a {
  color: hsl(228, 45%, 44%);
}

/* Desktop version */
@media (min-width: 600px) {
  .card {
    width: 384px;
    padding: 40px;
  }
}
