main > div, header {
    visibility: hidden;
}

#site-loader {
    position: fixed;
    inset: 0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  #site-loader::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 4px solid rgb(16 66 216);
    border-top-color: rgb(227 231 243);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
  }
  
  @keyframes spin {
    to { transform: rotate(360deg); }
  }