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

body,
html {
  height: 100%;
  background: #d5e1ef;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  line-height: 1.3;
}
.wrapper {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.qr-code {
  background: white;
  padding: 0.8em;
  border-radius: 1em;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 250px;
  margin: 0 auto;
}

.qr-code img {
  width: 100%;
  border-radius: 0.5rem;
}

.qr-code h1 {
  margin: 1em 0.5em;
  font-size: 16px;
  font-weight: 700;
}
.qr-code p {
  color: #9e9e9e;
  font-size: 12px;
  margin: 0 0.5em 1.5em 0.5em;
}
