body {
  margin: 0;
}

#loading-screen {
  background: #00486b;
  display: none;
  gap: 32px;
  height: 100vh;
  justify-items: center;
  margin: 0;
}

#agility-logo {
  align-self: end;
  height: 15vh;
  width: 45vh;
}

#loading-spinner {
  align-self: start;
  animation: spin 2.5s infinite cubic-bezier(0.5, 0.75, 0.35, 0.65);
  fill: #fff;
  height: 10vh;
  width: 10vh;
}

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