/* Spinner styles */
.spinner {
  border: 8px solid #f3f3f3; /* Light grey background */
  border-top: 8px solid #29ABE2; /* Blue top border */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

#splash-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    opacity: 1;
    transition: opacity 150ms ease;
}

#splash-screen.fade-out {
    opacity: 0;
}

#splash-screen-logo {
    width: 250px;
    height: 150px;
    display: block;
}

/* Reset any default body margin that could offset centering */
body {
    margin: 0;
    background: white;
}

/* Keyframe animation for spinner */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
