:root {
  --slate300: hsl(212, 45%, 89%);
  --slate500: hsl(216, 15%, 80%);
  --slate900: hsl(218, 44%, 22%);
}

.container {
  background-color: var(--slate300);
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1750px;
  margin: 100px auto;
  height: 80vh;
}

.main-container {
  max-width: 275px;
  border: 1px solid white;
  background-color: white;
  padding: 15px;
  margin: 15px;
  height: 28rem;
  border-radius: 20px;
}

.qr-img img {
  border-radius: 10px;
  width: 100%;
  height: auto;
}

.description {
  max-width: fit-content;
}

h1 {
  font-weight: 700;
  font-family: Outfit, sans-serif;
  font-size: 1.3rem;
  text-align: center;
}

p {
  font-weight: 400;
  font-size: 15px;
  font-family: Outfit, sans-serif;
  text-align: center;
  padding-inline-start: 10px;
}

@media (max-width: 375px) {
  .container {
    max-width: 350px;
  }
}
