* {
  box-sizing: border-box;
}
body {
  background-color: hsl(0, 0%, 8%);
  margin: 0;
  font-family: "Inder", serif;
}
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 30px);
}
.container .social-content {
  background-color: hsl(0, 0%, 12%);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  color: hsl(0, 0%, 100%);
  min-width: 340px;
}
@media (min-width: 376px) {
  .container .social-content {
    min-width: 375px;
  }
}
.social-content img {
  width: 80px;
  border-radius: 50%;
}
.social-content h1 {
  font-size: 25px;
  margin: 30px auto 10px;
}
.social-content address {
  color: hsl(75, 94%, 57%);
  font-weight: 900;
  font-style: normal;
  font-size: 14px;
}
.social-content p {
  font-size: 14px;
  margin: 30px auto 20px;
}
.social-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.social-content ul li a {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 10px;
  margin: 15px 0;
  border-radius: 10px;
  background-color: hsl(0, 0%, 20%);
  transition: 0.3s;
}
.social-content ul li a:hover {
  color: hsl(0, 0%, 8%);
  background-color: hsl(75, 94%, 57%);
}
.attribution {
  font-size: 11px;
  text-align: center;
  padding: 8px 0;
  color: hsl(0, 0%, 100%);
}
.attribution a {
  color: hsl(228, 45%, 44%);
}
