      body {
        background-color: #0e1b32;
        display: flex; 
        flex-direction: column;
        justify-content: center; 
        align-items: center; 
        height: 100vh; 
        font-family: Comic Neue, sans-serif; 
        margin: 0; 
        position: relative; 
        color: white; 
}

#spinner { 
        width: 30px; 
        height: 30px; 
        border: 4px solid rgba(252,41,80,255);
        border-top: 4px solid #000; 
        border-radius: 50%; 
        animation: spin 1s linear infinite; 
        margin-bottom: 20px;
 }
 @keyframes spin { 
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
 }   

                /* This will be at the bottom of the page if removed. -->    p {  position: absolute; */

 p {
          bottom: 0; 
          left: 0; 
          right: 0;
          margin: 0; 
          padding: 20px; 
          background-color: 
          /*gray*/   #8B8000; 
          text-align: center; 
          border-radius: 25px;
          color: white;
}

