@keyframes progress {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.5)
  }

  100% {
    transform: scale(1);
  }
}

body {
  margin: 0;
}

#splash-screen {
  background-color: var(--primaryColor);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.progress-indicator {
  display: flex;
  justify-content: center;
  align-content: space-around;
  position: relative;
  text-align: center;
  height: 9.75em;
  width: 9.75em;
  border: 1px solid #fff;
  border-radius: 50%;
}

.progress-indicator .indicator {
  animation: progress 1.4s infinite ease-in-out;
  height: 1.25em;
  width: 1.25em;
  margin: auto 10px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
}

.progress-indicator .indicator1 {
  animation-delay: -.7s;
}
.progress-indicator .indicator2 {
  animation-delay: -.35s;
}

.progress-indicator-content {
  position: absolute;
  top: 100%;
  margin-top: 1em;
}
