* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 62.5%;
  font-family: "Figtree", sans-serif;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background-color: rgba(244, 208, 78, 1);
}
.card {
  width: 350px;
  background-color: white;
  border-radius: 13px;
  box-shadow: 10px 10px 0 black;
  padding: 20px;
  border-width: 1px;
  border-style: solid;
  border-color: black;
}
h1 {
  font-family: "figtree", sans-serif;
  font-size: 2.4rem;
  margin: 0 0 10px 0;
  font-weight: 700;
}
h1:hover {
  color: rgba(244, 208, 78, 1);
  cursor: pointer;
}
p {
  font-size: 1.4rem;
  line-height: 1.6;
  margin: 1rem 0 1.5rem 0;
}

@media (max-width: 37.5em) {
  body {
    font-size: 1.4rem;
  }
  .card {
    width: 277px;
    padding: 10px;
  }
}
.image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 7px;
}
button {
  padding: 5px 7px;
  background-color: rgba(244, 208, 78, 1);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  color: black;
  font-size: 14px;
}
.author {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}
.author span {
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
}
.attribution {
  font-size: 11px;
  text-align: center;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}
