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

* {
  margin: 0;
  padding: 0;
  font-family: inter;
}

body {
  min-height: 100vh;
  min-width: 100%;
  background-color: hsl(0, 0%, 8%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.container {
  display: flex;
  flex-direction: column;
  color: hsl(0, 0%, 100%);
  background-color: hsl(0, 0%, 12%);
  max-width: 350px;
  padding: 30px 40px;
  border-radius: 10px;
}

img {
  max-width: 70px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.links {
  padding-top: 20px;
}

.link1,
.link2,
.link3,
.link4,
.link5 {
  background-color: hsl(0, 0%, 20%);
  margin: 10px 10px;
  padding: 10px 10px;
  border-radius: 5px;
  transition: 0.1s all ease-in-out;
  cursor: pointer;
}

.location {
  color: hsl(75, 94%, 57%);
  padding-top: 10px;
  padding-bottom: 20px;
}

p {
  font-size: 14px;
}

.attribution {
  font-size: 11px;
  text-align: center;
  color: white;
  padding-top: 20px;
}
.attribution a {
  color: hsl(78, 100%, 53%);
}

.link1:hover,
.link2:hover,
.link3:hover,
.link4:hover,
.link5:hover {
  background-color: hsl(78, 100%, 53%);
  transition: 0.1s all ease-in-out;
}
