body {
  margin: 0;
}
.splash-screen {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.splash-screen .spin {
  width: 40px;
  height: 40px;
  animation: rotate 1.4s linear infinite;
  transform-origin: center;
}
.splash-screen circle {
  fill: none;
  stroke: #1976d2;
  stroke-width: 3.6;
  stroke-dasharray: 80px, 200px;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  animation: spin 1.4s ease-in-out infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  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;
  }
}

@keyframes spin {
  0% {
    stroke-dasharray: 1px, 200px;
    stroke-dashoffset: 0;
}
50% {
  stroke-dasharray: 100px, 200px;
  stroke-dashoffset: -15px;
}
100% {
  stroke-dasharray: 100px, 200px;
  stroke-dashoffset: -125px;
}
}
