* {
  box-sizing: border-box;
  background-color: hsl(0, 0%, 8%);
  color: white;
  font-family: "Paragraph", sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

.attribution {
  margin-top: 10px;
  font-size: 11px;
  text-align: center;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}

.container {
  background-color: hsl(0, 0%, 12%);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  max-width: 360px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  padding: 20px 20px;
}

.profile__img {
  border-radius: 50%;
  align-self: center;
  margin-top: 0;
  width: 72px;
  height: auto;
}

.profile__name {
  font-weight: lighter;
  background-color: hsl(0, 0%, 12%);
}

.profile__location {
  color: hsl(75, 94%, 57%);
  font-weight: bold;
  background-color: hsl(0, 0%, 12%);
  margin-top: -4px;
  margin-bottom: 16px;
}

.profile__quote {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.4;
  color: hsl(0, 0%, 80%);
  background-color: hsl(0, 0%, 12%);
}

ul {
  list-style: none;
  background-color: hsl(0, 0%, 12%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 20px;
}

.profile__link {
  display: block;
  width: 100%;
  background-color: hsl(0, 0%, 20%);
  text-align: center;
  border-radius: 8px;
  padding: 10px 0;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

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

@media (max-width: 480px) {
  body {
    padding-left: 25px;
    padding-right: 25px;
  }

  ul {
    padding-left: 0;
    padding-right: 0;
  }
}
