@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap");

body {
  font-family: "Outfit", sans-serif;
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
}
p {
  font-size: 15px;
  color: hsl(220, 15%, 55%);
}
main {
  width: 100%;
  height: 100%;
  background-color: hsl(212, 45%, 89%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#card {
  width: 320px;
  height: 500px;
  margin: 0;
  border-radius: 15px;
  background-color: hsl(0, 0%, 100%);
  overflow: hidden;
}
#image-card {
  width: auto;
  margin: 15px;
}
#image-card img {
  width: 100%;
  border-radius: 15px;
}
#content-card {
  margin: 30px;
}
#content-card p {
  text-align: center;
}
p.bold {
  font-weight: 700;
  font-size: 20px;
  color: hsl(218, 44%, 22%);
}

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