@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

body {
  background-color: #ececec;
}

.app-loading {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-loading__circle {
  fill: none;
  animation: spin 0.8s infinite linear;
  width: 32px;
}

.app-loading__circle-path {
  fill: #1c2575;
}
