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

:root {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: hsl(0, 0%, 8%);
  color: white;
}

#card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  max-width: 350px;
  padding: 2.5rem;
  gap: 1.5rem;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  background-color: hsl(0, 0%, 12%);
}

#profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

#name {
  font-size: x-large;
  font-weight: 600;
}

#location {
  color: hsl(75, 94%, 57%);
  font-weight: 600;
}

#links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
}

.link {
  background-color: hsl(0, 0%, 20%);
  width: 100%;
  text-align: center;
  padding: 10px 1px;
  border-radius: 8px;
  font-weight: 600;
}

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

#image {
  border-radius: 50%;
  width: 30%;
}
