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

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

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

.container {
  max-width: 360px;
  margin: 0 auto;
}

.card {
  background-color: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

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

.text {
  padding: 20px;
}

.card h1 {
  font-weight: 700;
  font-size: 24px;
  color: hsl(218, 44%, 22%);
  margin: 10px 0 20px;
  text-align: center;
}

.card p {
  font-weight: 400;
  font-size: 15px;
  color: hsl(216, 15%, 48%);
  text-align: center;
  line-height: 1.6;
}

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