
body {
    background-color: #a9a9a9; /* background color */
    font-family: '', serif; /* font settings */ font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: rgb(0, 247, 255); 
    margin: 10; 
    padding: 100; 
    
  }


  .background {
    background-image: url("../images/load-33_256.gif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
    text-shadow: 0 0 10px rgb(0, 247, 255);
  }

  h2 {
    text-align: left;
    text-shadow: 0 0 10px rgb(0, 247, 255);
  }

  .loadingimage { 
    margin-top: 10%;
    margin-bottom: 10%;
    margin-left: 10%;

  

  }

  
   /* Popup container - can be anything you want */
   .popup {
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-shadow: 0 0 10px rgb(0, 247, 255)
  }
  
  /* The actual popup */
  .popup .popuptext {
    visibility: hidden;
    width: 160px;
    background-color: rgb(0, 247, 255);
    color: #fff;
    text-align: center;
    border-radius: 0px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -80px;
    text-shadow: 0 0 10px rgb(0, 247, 255)
  }
  
  /* Popup arrow */
  .popup .popuptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-color: rgb(0, 247, 255) transparent transparent transparent;
  }
  
  /* Toggle this class - hide and show the popup */
  .popup .show {
    visibility: visible;
    -webkit-animation: fadeIn 0.5s;
    animation: fadeIn 0.5s;
  }
  
  /* Add animation (fade in the popup) */
  @-webkit-keyframes fadeIn {
    from {opacity: 0;} 
    to {opacity: 1;}
  }
  
  @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity:1 ;}
  }

  ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: 0;
  }
  
  li {
    float: left;
  }
  
  li a {
    display: block;
    color:rgb(0, 247, 255);
    text-align: center;
    padding: 10px 10px;
    text-decoration: none;
    text-shadow: 0 0 10px rgb(0, 247, 255)
  }
  
  li a:hover {
    background-color: rgb(0, 247, 255);
  }

