/*
Airism Quiz - Special Project
by John Wong Cheuk Bun (john.wong@uniqlo.eu)
v1.0.0
*/
.text-centre {
  text-align: center;
}

.mt1 {
  margin-top: 1rem;
}

.mt2 {
  margin-top: 2rem;
}

.mt3 {
  margin-top: 3rem;
}

.mt4 {
  margin-top: 4rem;
}

.mb1 {
  margin-bottom: 1rem;
}

.mb2 {
  margin-bottom: 2rem;
}

.mb3 {
  margin-bottom: 3rem;
}

.p1 {
  padding: 1rem;
}

.cta-button {
  background-color: #fff;
  color: #2a93b3;
  padding: 1rem 2rem;
  border-radius: 12rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 50vw;
  display: block;
  text-align: center;
}

.background-img {
  background-color: #2a93b3;
  color: #fff;
  position: relative;
  z-index: 1;
  min-height: 100vh;
  max-width: 100%;
  overflow: hidden;
}
.background-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("https://image.uniqlo.com/UQ/ST3/eu/imagesother/2026/content-pages/airism-quiz/landing-airism-header-banner.jpg");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  z-index: -1;
}
@media (min-width: 768px) {
  .background-img::before {
    filter: blur(5px) brightness(0.8);
    transform: scale(1.05); /* Prevents white edges when blurred */
  }
}/*# sourceMappingURL=airism-quiz-john.css.map */