* {
  box-sizing: border-box;
}

body {
  background-color: #D5E1EF;
  display: grid;
  place-items: center;
  min-height: 100dvh;
  margin: 0;
  font-family: "Outfit", sans-serif;
}

.card {
  padding: 1rem 1rem 2.5rem;
  max-width: 320px;
  margin: auto;
  background-color: white;
  border-radius: 20px;
  text-align: center;
}

img {
  display: block;
  max-width: 100%;
  border-radius: 10px;
}

h1 {
  font-size: 1.375rem;
  line-height: 120%;
  letter-spacing: 0px;
  font-weight: bold;
  color: #1F314F;
  max-width: 90%;
  margin: 1.5rem auto 1rem;
}

p {
  font-size: 0.9375rem;
  line-height: 140%;
  letter-spacing: 0.2px;
  color: #68778D;
  max-width: 90%;
  margin-inline: auto;
  margin-block: 0;
}