body {
  background: #0f0f0f;
  height: 100vh;
  width: 100%;
  margin: 0;
  overflow: hidden;
  color: white;
  font-family: semibold;
}

section {
  display: flex;
  align-items: center;
}

.background {
  height: 100vh;
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 100;
}
.background:after {
  animation: noise 1s steps(2) infinite;
  background-image: url("../images/noise.png");
  background-position: 50%;
  content: "";
  height: calc(100vh + 20rem);
  left: -10rem;
  position: absolute;
  top: -10rem;
  width: calc(100vw + 20rem);
  opacity: 1;
}
@keyframes noise {
  0% {
    transform: translate3d(0, 9rem, 0);
  }
  10% {
    transform: translate3d(-1rem, -4rem, 0);
  }
  20% {
    transform: translate3d(-8rem, 2rem, 0);
  }
  30% {
    transform: translate3d(9rem, -9rem, 0);
  }
  40% {
    transform: translate3d(-2rem, 7rem, 0);
  }
  50% {
    transform: translate3d(-9rem, -4rem, 0);
  }
  60% {
    transform: translate3d(2rem, 6rem, 0);
  }
  70% {
    transform: translate3d(7rem, -8rem, 0);
  }
  80% {
    transform: translate3d(-9rem, 1rem, 0);
  }
  90% {
    transform: translate3d(6rem, -5rem, 0);
  }
  100% {
    transform: translate3d(-7rem, 0, 0);
  }
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

main {
  width: 100%;
}
main .container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: space-between;
  padding: 50px;
}
main .container .top {
  display: flex;
  justify-content: end;
}
main .container .top button {
  border: none;
  background: none;
  color: white;
  font-family: light;
  cursor: pointer;
}
main .container .top button.active {
  color: #F1AE27;
  cursor: not-allowed;
}
main .container .top button.interactable:hover {
  color: #F1AE27;
}
main .container .middle {
  position: relative;
}
main .container .middle .brand {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  margin-bottom: 25px;
}
main .container .middle .brand img {
  width: 45px;
}
main .container .middle .greeting {
  position: relative;
}
main .container .middle .greeting h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
main .container .middle .greeting h1 span {
  font-family: bold;
}
main .container .middle .greeting h2 {
  color: white;
  margin-bottom: 3rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
main .container .middle .greeting h2 span {
  transform: translateY(100%);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  font-family: bold;
  color: #F1AE27;
}
main .container .middle .button {
  display: block;
  background-color: transparent;
  border: 2px solid white;
  width: 220px;
  height: 45px;
  line-height: 100px;
  margin: auto;
  color: #fff;
  position: absolute;
  left: 0;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
  transition: all 0.6s ease;
}
main .container .middle .button span,
main .container .middle .button .icon {
  display: block;
  height: 100%;
  text-align: center;
  position: absolute;
  top: 0;
}
main .container .middle .button span {
  width: 65%;
  line-height: inherit;
  font-size: 1rem;
  left: 0;
  transition: all 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .container .middle .button span:after {
  content: "";
  background-color: white;
  width: 2px;
  height: 70%;
  position: absolute;
  top: 15%;
  right: -1px;
}
main .container .middle .button .icon {
  width: 35%;
  right: 0;
  transition: all 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .container .middle .button .icon i {
  font-size: 1.4rem;
  transition: all 0.6s ease;
}
main .container .middle .button:hover {
  background: white;
  color: #0f0f0f;
}
main .container .middle .button:hover span {
  left: -72%;
  opacity: 0;
}
main .container .middle .button:hover .icon {
  width: 100%;
}
main .container .middle .button:hover .icon i {
  font-size: 1.6rem;
}
main .container .socials {
  list-style: none;
  padding: 0;
}
main .container .socials li {
  display: inline-block;
  margin-right: 10px;
  font-size: 24px;
  position: relative;
  line-height: 30px;
  border: 2px solid #fff;
}
main .container .socials li:nth-child(1) a:hover {
  color: #171515;
}
main .container .socials li:nth-child(2) a:hover {
  color: #0077B5;
}
main .container .socials li:nth-child(3) a:hover {
  color: #4267B2;
}
main .container .socials li a {
  text-decoration: none;
  position: relative;
  z-index: 0;
  color: #fff;
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.1);
  transition: all 0.35s;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35px;
  width: 57px;
  line-height: 30px;
}
main .container .socials li a:hover {
  color: black;
}
main .container .socials li a:hover:hover:before, main .container .socials li a:hover:hover:after {
  width: 75%;
}
main .container .socials li a:before, main .container .socials li a:after {
  position: absolute;
  content: "";
  width: 0;
  background: rgba(255, 255, 255, 0.8);
  top: 3px;
  bottom: 3px;
  transition: all 0.35s;
}
main .container .socials li a:before {
  left: 3px;
}
main .container .socials li a:after {
  right: 3px;
}
main .container .socials li a i {
  font-size: 1rem;
  z-index: 2;
}

#trailer {
  height: 20px;
  width: 20px;
  border: 2px solid white;
  border-radius: 20px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: 0;
  transition: all 500ms ease;
}
#trailer i {
  z-index: 99999999;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}

body:hover > #trailer {
  opacity: 1;
}

@font-face {
  font-family: light;
  src: url(../fonts/light.otf);
}
@font-face {
  font-family: semibold;
  src: url(../fonts/semibold.otf);
}
@font-face {
  font-family: bold;
  src: url(../fonts/bold.otf);
}
@font-face {
  font-family: extrabold;
  src: url(../fonts/extrabold.otf);
}
.container {
  padding-right: 40px;
  padding-left: 40px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 500px) {
  main .container .middle .greeting h1 {
    font-size: 1.8rem;
  }
  main .container .middle .greeting h2 {
    font-size: 1.3rem;
  }
}
@media (max-width: 460px) {
  main .container .middle .greeting h1 {
    font-size: 1.6rem;
  }
}
@media (max-width: 420px) {
  main .container .middle .greeting h1 {
    font-size: 1.5rem;
  }
}
@media (max-width: 400px) {
  main .container .middle .greeting h1 {
    font-size: 1.4rem;
  }
}
@media (max-width: 380px) {
  main .container .middle .greeting h1 {
    font-size: 1.3rem;
  }
}
@media (max-width: 360px) {
  main .container .middle .greeting h1,
  main .container .middle .greeting h2 {
    font-size: 1.1rem;
  }
}
@media (min-width: 400px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
@media only screen and (max-width: 1000px) {
  #trailer {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */