body {
  background-color: hsl(212, 45%, 89%);
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  height: 100vh;
  align-items: center;
}
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
  width: 300px;
  border-radius: 12px;
  padding: 10px;
}
.qr-code {
  border-radius: 10px;
  width: 300px;
}
h1 {
  font-size: 25px;
  text-align: center;
}
p {
  font-size: 18px;
  text-align: center;
  color: gray;
}
.attribution {
  font-size: 11px;
  text-align: center;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}

@media (max-width: 320px) {
  html {
    font-size: 14px; /* Adjust font size for smaller screens */
  }
}

@media (min-width: 1200px) {
  html {
    font-size: 18px; /* Adjust font size for larger screens */
  }
}
