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

body {
  height: 100vh;
}
main {
  width: 100%;
  height: 100%;
  background-color: hsl(212, 45%, 89%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Outfit", sans-serif;
  caret-color: transparent;
}
.card {
  width: 320px;
  height: 497px;
  background-color: hsl(0, 0%, 100%);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.qr-img {
  width: 288px;
  height: 288px;
  margin: calc((320px - 288px) / 2);
  border-radius: 11px;
  -webkit-border-radius: 11px;
  -moz-border-radius: 11px;
  -ms-border-radius: 11px;
  -o-border-radius: 11px;
}
.content,
.desc {
  width: 288px;
  height: 50px;
  margin: calc((320px - 288px) / 2);
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.content {
  margin-top: 5px;
}
.desc {
  margin-top: 12px;
}
.content p,
.desc p {
  max-width: 280px;
  text-align: center;
}
.content p {
  color: hsl(218, 44%, 22%);
  font-size: 22px;
  font-weight: 700;
}
.desc p {
  color: hsl(220, 15%, 55%);
  font-size: 16px;
}
/* mobile screens */
@media screen and (max-width: 375px) {
  .card {
    width: 300px;
    height: 477px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
  }
  .qr-img {
    width: 268px;
    height: 268px;
    margin: calc((300px - 268px) / 2);
    border-radius: 11 px;
    -webkit-border-radius: 11px;
    -moz-border-radius: 11px;
    -ms-border-radius: 11px;
    -o-border-radius: 11px;
  }
}

/* Desktop screens */
@media screen and (max-width: 1440px) {
}
