body{
  background: white;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.sizedbox {
  height: 20%;
}

#Splash{
  width: 100%;
  height: 100%;
  position: absolute;
  background: white;
  display: flex;
  flex-direction: column;
  opacity: 1;
  transition: opacity 1s;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
}


.spinner {
  width: 20px;
  height: 20px;
  animation: spinner-o824ag 1s infinite linear;
}

.spinner div {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ec423f;
  border-radius: 50%;
  animation: spinner-vse6n7 1.25s infinite ease;
}

.spinner div:nth-child(1) {
  --rotation: 90;
}

.spinner div:nth-child(2) {
  --rotation: 180;
}

.spinner div:nth-child(3) {
  --rotation: 270;
}

.spinner div:nth-child(4) {
  --rotation: 360;
}

@keyframes spinner-vse6n7 {

  0%,
  100% {
    transform: rotate(calc(var(--rotation) * 1deg)) translateY(0);
  }

  50% {
    transform: rotate(calc(var(--rotation) * 1deg)) translateY(300%);
  }
}

@keyframes spinner-o824ag {
  to {
    transform: rotate(360deg);
  }
}