@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-VariableFont_slnt_wght.ttf");
}

body {
  font-family: "Inter", sans-serif;
  padding: 0;
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: hsl(0, 0%, 8%);
  color: hsl(0, 0%, 100%);
}

.container {
  margin: 0 2rem;
  padding: 2rem;
  width: 375px;
  background-color: hsl(0, 0%, 12%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

.info {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.info > img {
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
}

.info .item:nth-child(2) {
  margin-bottom: 0;
}

.info .item:nth-child(3) {
  margin-top: 0;
  color: hsl(75, 94%, 57%);
}

.info .item:nth-child(4) {
  color: hsl(0, 0%, 60%);
  margin-bottom: 0;
}

.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.link {
  width: 100%;
  border-radius: 8px;
  background-color: hsl(0, 0%, 20%);
  text-align: center;
  padding: 15px 0;
  transition: color 0.3s ease;
}

.link:hover {
  background-color: hsl(75, 94%, 57%);
  cursor: pointer;
  color: black;
}
