* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: hsl(47, 88%, 63%);
  font-size: 16px;
  flex-direction: column;
}
.container {
  box-shadow: 10px 5px 5px black;
  background-color: hsl(0, 0%, 100%);
  position: absolute;
  max-width: 350px;
  border-radius: 15px;

  padding: 5px;
}
.logo {
  width: 100%;
  padding: 15px;
}
.box {
  margin: 8px;
  width: fit-content;
  background-color: hsl(47, 88%, 63%);
  padding: 5px;
  border-radius: 5px;
  margin-bottom: 10px;
  margin-left: 15px;
}
.pub {
  margin-left: 15px;
  color: hsl(0, 0%, 42%);
  margin-bottom: 20px;
}
h2 {
  color: hsl(0, 0%, 7%);
  margin-left: 15px;
  margin-bottom: 15px;
}
.content {
  margin-left: 15px;
  margin-bottom: 15px;
  color: hsl(0, 0%, 42%);
}
.attribution {
  margin-top: 200px;
}
.attribution a {
  text-decoration: none;
}
.footer {
  margin-left: 15px;
  display: flex;
  flex-direction: row;
}
.footer h3 {
  margin-left: 15px;
}
img {
  width: 30px;
}
