#splash-screen {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px !important;
  height: 220px !important;
}
#splash-screen img {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 65%;
  height: 65%;
  border-radius: 999px;
}
#splash-screen svg {
  width: 100%;
  height: 100%;
  transform-origin: center;
  animation: rotate 2s linear infinite;
}
#splash-screen circle {
  fill: none;
  stroke: #ffbfbe;
  stroke-width: 1;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

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

@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dashoffset: -125px;
  }
}
