/* --- Basic Reset & Defaults --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


.loader-holder {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  background: #ddd;
}

.loader {
  width: 60px;
  height: 60px;
  border: 6px solid #444;
  border-top: 6px solid #313BF8;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.message {
  font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
  text-align: center;
  font-size: 3rem;
  line-height: 1;
  margin-top: 20px;
  text-transform: uppercase;
  color: #313BF8;
  font-weight: bolder;
}