*,
ul {
  margin: 0;
  padding: 0;
}

* {
  border: 0;
}

*,
:after,
:before {
  box-sizing: border-box;
}

:active,
:focus,
a:active,
a:focus {
  outline: 0;
}

aside,
footer,
header,
nav {
  display: block;
}

#qwdw-landing section.body {
  min-height: 100vh;
  position: relative;
  background-repeat: no-repeat !important;
  background-position: top left !important;
  background-size: cover !important;
  z-index: 10;
}

#qwdw-landing section.body.embeded-body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
  pointer-events: none;
}

#qwdw-landing .body {
  width: 100vw;
  min-height: 100vh;
  position: relative;
  z-index: 100;
  font:
    14px/1 Ubuntu,
    sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #000;
}

@keyframes spinner {
  0% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(3deg);
  }
  100% {
    transform: rotate(-3deg);
  }
}

.first-spin {
  animation: 5s firstSpin ease;
  animation-fill-mode: forwards;
}

.second-spin {
  animation: 5s secondSpin ease;
  animation-fill-mode: forwards;
}

@keyframes firstSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1350deg);
  }
}

@keyframes secondSpin {
  from {
    transform: rotate(1350deg);
  }
  to {
    transform: rotate(2970deg);
  }
}

#qwdw-landing .animate {
  animation: 2s spinner ease-in-out infinite;
}

#qwdw-landing .wheel::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  display: block;
  width: 75%;
  height: 75%;
  background: var(--wheel-mask-url) no-repeat center / contain;
  pointer-events: none;
  z-index: 6;
}

@media (min-width: 500px) {
  #qwdw-landing .wheel {
    max-width: 700px;
  }
}

#qwdw-landing .paragraph {
  background: #0b1020;
  color: #e8ecf3;
  padding: 3rem 1.25rem 4rem;
}

#qwdw-landing .paragraph__container {
  max-width: 52rem;
  margin: 0 auto;
}

#qwdw-landing .paragraph h2,
#qwdw-landing .paragraph h3 {
  color: #fbd84d;
  margin: 0 0 1rem;
  line-height: 1.3;
}

#qwdw-landing .paragraph p {
  margin: 0 0 1rem;
  line-height: 1.65;
  color: #c8d0de;
}
