@font-face {
  font-family: "Anton";
  font-display: auto;
  src: url("../fonts/aton/Anton-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@keyframes move-1 {
  0% {
    transform: translateY(-100px);
  }
  50% {
    transform: translateY(100px);
  }
  100% {
    transform: translateY(-100px);
  }
}
@keyframes move-2 {
  0% {
    transform: translateY(100px);
  }
  50% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(100px);
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Anton";
  font-weight: 400;
  background-color: #000;
  overflow-x: hidden;
  margin: auto;
  color: #fff;
}

.main {
  width: 100vw;
  height: 100vh;
  margin: auto;
  position: relative;
  overflow: hidden;
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}
.main else {
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media screen and (min-width: 768px) {
  .main {
    background: url("../images/desktop_background.webp") no-repeat center center/cover;
  }
}
@media screen and (max-width: 767px) {
  .main {
    background: url("../images/mobile_background.webp") no-repeat center center/cover;
  }
}
.main .wrapper {
  width: 100%;
  position: relative;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .main .wrapper {
    aspect-ratio: 16/9;
  }
}
.main .foreground {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.main .foreground img.img-desktop {
  width: 100%;
  aspect-ratio: 16/9;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .main .foreground img.img-desktop {
    display: none;
  }
}
@media screen and (max-width: 1399px) {
  .main .foreground {
    opacity: 0;
  }
}

/*# sourceMappingURL=style.css.map */
