@font-face {
  font-family: "BebasNeuePro-ExpEb";
  src: url(/files/theme/BebasNeue-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "Gotham-Black";
  src: url(/files/theme/Gotham-Black.otf) format("opentype");
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  position: relative;
}
body svg {
  width: 100vw;
  margin-left: -1px;
  margin-right: -1px;
  margin-bottom: -5px;
  height: 100%;
}

a {
  position: relative;
  z-index: 1000;
}

.content {
  position: absolute;
  overflow: hidden;
  pointer-events: none;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.logo-1 {
  position: absolute;
  display: block;
  width: 20vw;
  height: 20vw;
  background-image: url(/files/theme/exodus_circle_white.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  z-index: 10;
  display: none;
  transition: 1s;
  opacity: 0;
  animation: rotateLogo-1 19s infinite linear;
  top: 0;
  left: 0;
}

.logo-2 {
  position: absolute;
  display: block;
  width: 20vw;
  height: 20vw;
  background-image: url(/files/theme/exodus_circle_white.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  z-index: 10;
  display: none;
  transition: 1s;
  opacity: 0;
  animation: rotateLogo-2 19s infinite linear;
  right: 0;
  top: 14.5%;
}

.logo-3 {
  position: absolute;
  display: block;
  width: 20vw;
  height: 20vw;
  background-image: url(/files/theme/exodus_circle_white.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  z-index: 10;
  display: none;
  transition: 1s;
  opacity: 0;
  animation: rotateLogo-3 19s infinite linear;
  left: 0;
  top: 83%;
}

.logo-4 {
  position: absolute;
  display: block;
  width: 20vw;
  height: 20vw;
  background-image: url(/files/theme/exodus_circle_white.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  z-index: 10;
  display: none;
  transition: 1s;
  opacity: 0;
  background-image: url(/files/theme/exodus_circle_red.svg);
  animation: rotateLogo-3 19s infinite linear;
  top: 100%;
  left: 100%;
}

.d-block {
  display: block;
}

.visible {
  opacity: 1;
}

@keyframes rotateLogo-1 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes rotateLogo-2 {
  0% {
    transform: translate(50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(50%, -50%) rotate(360deg);
  }
}
@keyframes rotateLogo-3 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes rotateLogo-4 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}/*# sourceMappingURL=styles.css.map */