:root {
  --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%);
}
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-VariableFont_slnt\,wght.ttf") format("truetype");
  font-weight: 400 700;
  font-style: normal;
}

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

.primary-container {
  background-color: var(--grey-900);
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px;
  background-color: var(--grey-800);
  border-radius: 12px;
  width: 100%;
  max-width: 384px;
}

.avatar-img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
}

.heading-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.heading-container h1 {
  font-size: 24px;
  line-height: 150%;
  color: var(--white);
  font-weight: 600;
}

.location {
  font-size: 14px;
  line-height: 150%;
  color: var(--green);
  font-weight: 700;
}

.bio {
  font-size: 14px;
  line-height: 150%;
  color: var(--white);
  font-weight: 500;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  list-style-type: none;
}

.button {
  display: block;
  width: 100%;
  padding: 12px;
  font-size: 14px;
  line-height: 150%;
  color: var(--white);
  font-weight: 600;
  text-align: center;
  background-color: var(--grey-700);
  transition: all 0.2s ease-in-out;
  appearance: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.button:hover {
  background-color: var(--green);
  color: var(--grey-700);
}

a {
  text-decoration: none;
}
