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

body {
  font-family: "Outfit", sans-serif;
  background-color: #d5e1ef;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.card {
  background-color: hsl(0, 0%, 100%);
  width: 320px;
  height: 499px;
  padding: 16px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

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

.card-info {
  padding: 0 16px;
}

h1 {
  color: hsl(218, 44%, 22%);
  font-size: 22px;
  margin: 24px 0 16px;
  line-height: 120%;
  font-weight: 700;
}

p {
  color: hsl(216, 15%, 48%);
  font-size: 15px;
  letter-spacing: 0.2px;
  line-height: 140%;
  font-weight: 400;
}
