/* width of card is 320px
    height of card is 498px */
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  font-family: Outfit, sans-serif;
  background: #d5e1ef;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.card {
  width: 320px;
  height: 498px;
  padding: 16px;
  background: white;
  border-radius: 15px;
}
.card-qr-code {
  width: 100%;
  height: 289px;
  border-radius: 10px;
}
.card-text h3 {
  font-size: 700;
  color: hsl(218, 44%, 22%);
  text-align: center;
  padding: 0 38px;
}
.card-text p {
  font-size: 400;
  color: hsl(216, 15%, 48%);
  text-align: center;
}
