* {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  background-color: hsl(212, 45%, 89%);
  font-family: "Outfit", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}


h1 {
  font-size: 24px;
  font-weight: 700;
  color: hsl(218, 44%, 22%);
  padding-top: 20px;
}

p {
  font-size: 18px;
  font-weight: 400;
  color: hsl(216, 15%, 48%);
  padding-top: 20px;
  padding-bottom: 20px;
}

.card {
  background-color: hsl(0, 0%, 100%);
  width: 300px;
  margin: auto;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.card img {
  width: 100%;
  border-radius: 12px;
}

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

