@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
  background-color: hsl(212, 45%, 89%);
  box-sizing: border-box;
  overflow: hidden;
  font-family: Outfit;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  gap: 20px;
}

.card {
  border-radius: 20px;
  width: 320px;
  height: 500px;
  background-color: white;
  padding: 16px;
}

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

h1 {
  text-align: center;
  font-weight: 700;
  font-size: 28px;
  color: hsl(218, 44%, 22%);
}

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

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