@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap");
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: none;
  -webkit-text-fill-color: none;
  -webkit-box-shadow: none;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -webkit-appearance: textfield;
          appearance: textfield;
  -moz-appearance: textfield;
}

*::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
* {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.body {
  width: 100%;
  min-height: calc(100vh - 80px);
  background: #332477;
}
.theme-light .body .homeTop {
  color: rgb(19, 17, 17);
}
.theme-light .body .homeTop .right .outer img, .theme-light .body .homeTop .right .inner img {
  animation: rotateRight 25s linear infinite;
  transform-origin: center;
}
@keyframes rotateRight {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.theme-light .body .homeTop .right .middle img {
  animation: rotateLeft 25s linear infinite;
  transform-origin: center;
}
@keyframes rotateLeft {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
.theme-light .body .homeSection {
  background: rgb(97, 8, 8);
  min-height: calc(100vh - 80px);
  color: black;
}
.theme-dark .body .homeTop {
  color: rgb(43, 4, 4);
}
.theme-dark .body .homeTop .right .outer img, .theme-dark .body .homeTop .right .inner img {
  animation: rotateRight 25s linear infinite;
  transform-origin: center;
}
@keyframes rotateRight {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.theme-dark .body .homeTop .right .middle img {
  animation: rotateLeft 25s linear infinite;
  transform-origin: center;
}
@keyframes rotateLeft {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
.theme-dark .body .homeSection {
  background: #1c1f22;
  min-height: calc(100vh - 80px);
  color: rgb(54, 7, 7);
}/*# sourceMappingURL=index.css.map */