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

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

body {
  background-color: hsl(212, 45%, 89%);
  font-size: 15px;
  font-family: "Outfit", sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

main {
  max-width: 27rem;
  margin: 0 auto;
}

div.card {
  background-color: hsl(0, 0%, 100%);
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
  margin: 2rem 1.5rem 2rem 1.5rem;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

img {
  border-radius: 1rem;
  width: 100%;
}

#title {
  color: hsl(218, 44%, 22%);
  font-weight: 700;
  margin: 1rem 0.3rem 1rem 0.3rem;
}

#instructions {
  color: hsl(220, 15%, 55%);
  font-weight: 400;
  margin: 1.5rem 1.5rem 1.5rem 1.5rem;
}

.attribution {
  font-size: 11px;
  text-align: center;
}

.attribution a {
  color: hsl(228, 45%, 44%);
}
