html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  background: #252334;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.2;
}

.accent {
  color: #fa324e;
}

.main {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  box-sizing: border-box;
}

.main__top {
  padding-top: 30px;
  text-align: center;
}

.top__content {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}

.main__top h1 {
  font-size: 2.2em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.main__top h2 {
  font-size: 1.1em;
  font-weight: 300;
  text-transform: uppercase;
  color: hsla(0,0%,100%,.5);
  margin: 0 auto;
}

.main__bottom {
  width: 100%;
  margin-top: 25px;
  text-align: center;
}

.main__bottom .item .question p {
  font-size: 1.5em;
  color: #fff;
  text-shadow: 0 2px 2px #000;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0 15px;
}

.redirect-btn {
  display: block;
  padding: 21px 40px;
  width: 100%;
  max-width: 140px;
  margin: 25px auto;
  text-align: center;
  font-size: 1em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 100px;
  background: #5ca91d;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease;
  cursor: pointer;
}
.redirect-btn:hover { background: #509319; }
.redirect-btn:active { background: #447d16; }

.banner-link {
   display: flex;
   justify-content: center;
   align-items: center;
   width: 100%;
   margin: 20px auto;
   padding: 0 15px;
   box-sizing: border-box;
   text-decoration: none;
   cursor: pointer;
}
.banner-link img {
   max-width: 100%;
   height: auto;
   display: block;
   border-radius: 8px;
   box-shadow: 0 4px 10px rgba(0,0,0,0.3);
   transition: transform 0.2s ease;
}

.banner-link:hover img {
   transform: scale(1.01);
}

.bg {
  position: fixed !important;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}
.bg:after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.3) 1px,
    transparent 1px,
    transparent 2px
  ), rgba(0, 0, 0, 0.4);
}
.bg__item {
  display: block;
  width: 100%;
  height: 100%;
}
video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-mobile { display: none; }
.bg-desktop { display: block; }

@media screen and (max-width: 768px) {
  .bg-mobile { display: block; }
  .bg-desktop { display: none; }
  .main__top h1 { font-size: 1.4em; }
  .main__top h2 { font-size: 1em; max-width: 90%; }
  .main__bottom .item .question p { font-size: 1.2em; line-height: 1.4; }
  .redirect-btn { max-width: 120px; padding: 15px 30px; font-size: 0.9em; }
}