html {
  font-size: 93.75%;
}

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

body {
  font-family: "Outfit", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  color: hsl(218, 44%, 22%);
}

.container {
  padding: 1rem;
  background-color: hsl(0, 0%, 100%);
  border-radius: 1rem;
  max-width: 275px;
}

.wrapper {
  display: grid;
  place-content: center;
  height: 100vh;
  width: 100%;
  padding: 1.5rem;
  background-color: hsl(212, 45%, 89%);
}

.qr-code {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  padding-bottom: 1.5rem;
}
.qr-code__image img {
  border-radius: 0.7rem;
  width: 100%;
}
.qr-code__text {
  text-align: center;
  margin-top: 1rem;
}
.qr-code__title {
  font-size: 1.35rem;
  font-weight: 900;
}
.qr-code__subtitle {
  font-size: 0.9rem;
  color: hsl(216, 15%, 48%);
  font-weight: 500;
  margin-top: 0.8rem;
}