#preloader {
  background-color: #414141;
  height: 100vh;
  width: 100vw;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  top: 0%;
}

/* From Uiverse.io by Juanes200122 */
.container {
  background-color: #414141;
}
svg {
  background-color: transparent;
  scale: 2;
}


@media screen and (max-width: 600px) {
    svg{
        scale: 1.5;
    }
}
@keyframes bounce {
  0%,
  100% {
    translate: 0px 36px;
  }
  50% {
    translate: 0px 46px;
  }
}
@keyframes bounce2 {
  0%,
  100% {
    translate: 0px 46px;
  }
  50% {
    translate: 0px 56px;
  }
}

@keyframes umbral {
  0% {
    stop-color: #d3a5102e;
  }
  50% {
    stop-color: rgba(211, 165, 16, 0.519);
  }
  100% {
    stop-color: #d3a5102e;
  }
}
@keyframes partciles {
  0%,
  100% {
    translate: 0px 16px;
  }
  50% {
    translate: 0px 6px;
  }
}
#particles {
  animation: partciles 4s ease-in-out infinite;
  background-color: transparent;
}
#animatedStop {
  animation: umbral 4s infinite;
  background-color: transparent;
}
#bounce {
  animation: bounce 4s ease-in-out infinite;
  background-color: transparent;
  translate: 0px 36px;
}
#bounce2 {
  animation: bounce2 4s ease-in-out infinite;
  background-color: transparent;
  translate: 0px 46px;
  animation-delay: 0.5s;
}
