body splash-screen, .splash-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: #ed6d14;
    z-index: 999999;
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #252525;
}

body splash-screen img, .splash-screen img {
    width: 220px;
    max-width: 220px;
}

body splash-screen .spinner, .splash-screen .spinner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    width: 56px;
}

body splash-screen .spinner > div, .splash-screen .spinner > div {
    width: 12px;
    height: 12px;
    background-color: #ed6d14;
    border-radius: 100%;
    display: inline-block;
}


body:not(.splash-screen-hidden) {
    overflow: hidden;
}

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


.centercircle2 {
  @apply
  relative
  items-center
  justify-center
  w-[65px]
  h-[65px]

}

.orbitcircle2 {
  animation: spin-around 2s linear infinite;
  @apply
  absolute
  -inset-2.5
  items-center
  justify-center
}


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

