@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
.attribution {
  font-size: 11px;
  text-align: center;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.2;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

body {
  background-color: black;
  color: white;
}

.container {
  background-color: hsl(0, 0%, 12%);
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 650px;
  width: 425px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  gap: 1rem;
}
.photo {
  border-radius: 50%;
  margin-top: -0px;
  align-self: center;
  width: 100px;
  height: 100px;
}

.name {
  margin-top: 20px;
  text-align: center;
  font-weight: 600;
}
.location {
  text-align: center;
  color: hsl(75, 94%, 57%);
  font-weight: 300;
  margin-top: -10px;
}
.bio {
  text-align: center;
  margin: 10px 0 10px 0;
}
.links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

button {
  padding: 1em;
  border-radius: 9px;
  border: none;
  margin-right: 50px;
  margin-left: 50px;
  font-weight: 500;
  color: white;
  background-color: hsl(0, 0%, 20%);
}

button:hover {
  color: black;
  font-weight: 600;
  background-color: hsl(75, 94%, 57%);
}
.footer {
  margin-top: 379px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 1.3rem;
}

a {
  font-size: 1.2rem;
}
@media only screen and (max-width: 481px) {
  .attribution {
    width: 500px;
  }
}
