body {
    margin: 0;
    padding: 0;
    background-color: #000;
    overflow: hidden;
}

@font-face {
    font-family: "nunito-black";
    src: url("./../assets/fonts/nunito-black.woff2") format("woff2"),
        url("./../assets/fonts/nunito-black.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
	font-family: "luckiestguy";
	src: url("./../assets/fonts/luckiestguy-regular-webfont.woff2") format("woff2"),
		url("./../assets/fonts/luckiestguy-regular-webfont.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}

@font-face {
  font-family: "Mali-BoldItalic";
  src: url("./../assets/fonts/Mali-BoldItalic.woff2") format("woff2"),
  url("./../assets/fonts/Mali-BoldItalic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Mali-MediumItalic";
  src: url("./../assets/fonts/Mali-MediumItalic.woff2") format("woff2"),
  url("./../assets/fonts/Mali-MediumItalic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Mali-Medium";
  src: url("./../assets/fonts/Mali-Medium.woff2") format("woff2"),
  url("./../assets/fonts/Mali-Medium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@keyframes spinLeft {
    0% {
      transform: rotate(20deg);
    }
    50% {
      transform: rotate(160deg);
    }
    100% {
      transform: rotate(20deg);
    }
  }
  @keyframes spinRight {
    0% {
      transform: rotate(160deg);
    }
    50% {
      transform: rotate(20deg);
    }
    100% {
      transform: rotate(160deg);
    }
  }
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(2520deg);
    }
  }

  #initial-load {
      position: absolute;
      background-color: #000;
      top: 0;
      left: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1;
  }

  /**
 * ==============================================
 * Dot Flashing
 * ==============================================
 */
.dot-flashing {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #ffffff;
  color: #ffffff;
  animation: dot-flashing 1s infinite linear alternate;
  animation-delay: 0.5s;
}
.dot-flashing::before, .dot-flashing::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
}
.dot-flashing::before {
  left: -15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #ffffff;
  color: #ffffff;
  animation: dot-flashing 1s infinite alternate;
  animation-delay: 0s;
}
.dot-flashing::after {
  left: 15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #ffffff;
  color: #ffffff;
  animation: dot-flashing 1s infinite alternate;
  animation-delay: 1s;
}

@keyframes dot-flashing {
  0% {
    background-color: #ffffff;
  }
  50%, 100% {
    background-color: rgba(185, 185, 185, 0.2);
  }
}

  @keyframes fadeOut {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }

  .fadeOut {
      animation: fadeOut 0.25s linear;
      animation-fill-mode: forwards;
  }