/*
Theme Name: First-A
Author: Elliot Louveau
Description: First-A
Version: 1.2
Tags: First-A
*/

#loading {
    position: fixed;
    z-index: 100;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(100,100,100,1);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #icon {
    width: 60px;
    height: 60px;
    border: 10px solid #fff;
    border-right-color: transparent;
    border-radius: 50%;
    box-shadow: 0 0 25px 2px transparent;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
      from { transform: rotate(0deg);   opacity: 0.2; }
      50%  { transform: rotate(180deg); opacity: 1.0; }
      to   { transform: rotate(360deg); opacity: 0.2; }
  }