@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&display=swap");
* {
  text-align: center;
  font-family: "Inter", sans-serif;
  color: white;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background-color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
p {
  font-size: 14px;
}
.profile-image {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  text-align: center;
  display: block;
  margin: 0 auto;
}
.nombre {
  font-weight: 400;
}
.pais-ciudad {
  font-weight: 400;
  font-size: 0.9rem;
  color: hsl(75, 94%, 57%);
}
.links {
  font-weight: 600;
}

.links div {
  padding: 12px;
  margin: 10px auto;
  width: 200px;
  border-radius: 10px;
  border: 1px solid black;
  background-color: hsl(0, 0%, 30%);
  transition:
    scale 0.4s ease,
    background-color 0.4s ease;
}
.links div:hover {
  background-color: orange;
  scale: 1.1;
  cursor: pointer;
}
.background {
  background-color: hsl(0, 0%, 20%);
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  max-width: 90%;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
