body {
  margin: 0;
  padding: 0;
}

::selection {
  color: #fff;
  background-color: #5e49ff;
}

#splash-screen {
  position: absolute;
  z-index: 1000;
  width: 100%;
  top: 0;
  flex: 1;
  display: flex;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #000004;
}

#splash-screen img {
  margin-left: calc(100vw - 100%);
  margin-bottom: 30px;
  max-width: 250px;
}

#splash-screen.hidden {
  opacity: 0;
  visibility: hidden;
}


@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

.loader {
  width: 120px;
  height: 75px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between
}

.loader span {
  font-size: 22px;
  text-transform: uppercase;
  margin: auto;
}

.ball1 {
  background-color: #FF8A5C;
}

.ball2 {
  background-color: #B2F466;
}

.ball3 {
  background-color: #FF8A5C;
}

.ball {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  animation: bounce .5s alternate infinite;
}

.ball:nth-child(2) {
  animation-delay: .16s;
}

.ball:nth-child(3) {
  animation-delay: .32s;
}

@keyframes bounce {
  from {
    transform: scaleX(1.25);
  }
  to {
    transform: translateY(-50px) scaleX(1);
  }
}
