@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap");

:root {
  --body-font: "Outfit", sans-serif;
  --white: hsl(0, 0%, 100%);
  --light-gray: hsl(212, 45%, 89%);
  --grayish-blue: hsl(220, 15%, 55%);
  --dark-blue: hsl(218, 44%, 22%);
}

* {
  margin: 0;
  padding: 0;
}

body {
  -ms-overflow-style: none; /* for Internet Explorer, Edge */
  background-color: var(--light-gray);
  box-sizing: border-box;
  font-family: var(--body-font);
  font-size: 15px;
  overflow-y: scroll;
  scrollbar-width: none; /* for Firefox */
}

body::-webkit-scrollbar {
  display: none; /* for Chrome, Safari, and Opera */
}

.qr-container {
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: -2px 10px 24px -11px rgba(0, 0, 0, .62);
  -webkit-box-shadow: -2px 10px 24px -11px rgba(0, 0, 0, .62);
  -moz-box-shadow: -2px 10px 24px -11px rgba(0, 0, 0, .62);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  margin: 5.3rem auto 9.4rem;
  text-align: center;
  width: max(20%, 20rem);
  height: auto;
}

.img-block img {
  border-radius: 10px;
  cursor: pointer;
  display: block;
  margin: 1rem auto auto;
  max-width: 90%;
}

.info-block {
  padding: 1.3rem 1.2rem 1.5rem;
}

.info-block h1 {
  color: var(--dark-blue);
  font-size: 1.39rem;
}

.info-block p {
  padding: 1rem;
  color: var(--grayish-blue);
  word-spacing: .9px;
}

@media (min-width: 1024px) {
  .qr-container {
    margin-top: 9.5rem;
  }
}
