html {
  font-size: 14px;
}

body {
  margin: 0;
  padding: 0;
}

.splash-screen {
  width: 100%;
  min-height: 100%;
  background-color: #4cae4f;
  position: absolute;
}

.splash-loader-container {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -32px;
  margin-top: -32px;
}

.splash-loader {
  animation: rotator 1.4s linear infinite;
}

.splash-title {
  position: absolute;
  color: #444;
  top: 50%;
  margin-top: -120px;
  width: 100%;
  text-align: center;
}

.splash-title > h3 {
  font-size: 1.75rem;
  background-color: #fff;
  border-radius: 20px;
  display: inline-block;
  padding: 0.75rem;
  box-shadow: 2px 7px 18px 5px #333;
  margin: 0 0 1rem;
  font-family: Roboto, sans-serif;
}

@keyframes rotator {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(270deg);
  }
}
.splash-path {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  transform-origin: center;
  animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}

@keyframes colors {
  0% {
    stroke: #4285F4;
  }
  25% {
    stroke: #DE3E35;
  }
  50% {
    stroke: #F7C223;
  }
  75% {
    stroke: #1B9A59;
  }
  100% {
    stroke: #4285F4;
  }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    transform: rotate(450deg);
  }
}

