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

html {
  min-width: 0;
  min-height: 100%;
  margin: 0;
  background: #ffffff;
  color: #111111;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-width: 0;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
}

.qr-page {
  display: grid;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  place-items: center;
  padding-block: max(1.25rem, env(safe-area-inset-top)) max(1.25rem, env(safe-area-inset-bottom));
  padding-inline: max(1rem, env(safe-area-inset-left)) max(1rem, env(safe-area-inset-right));
  overflow: hidden;
  overflow: clip;
  background: #ffffff;
}

.qr-page__content {
  width: min(100%, 42rem);
  text-align: center;
}

.qr-page h1 {
  max-width: 100%;
  margin: 0;
  overflow-wrap: anywhere;
  font-size: clamp(1.5rem, 6vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
}

@media (orientation: landscape) and (max-height: 30rem) {
  .qr-page {
    align-items: center;
    min-height: 100vh;
    padding-block: max(0.75rem, env(safe-area-inset-top)) max(0.75rem, env(safe-area-inset-bottom));
  }
}
