/*LoadingScreen*/
/* From Uiverse.io by Pradeepsaranbishnoi */
.eye {
    width: 20px;
    height: 8px;
    background-color: rgba(240, 220, 220, 1);
    border-radius: 0px 0px 20px 20px;
    position: relative;
    left: 10px;
    top: 40px;
    box-shadow: 40px 0px 0px 0px rgba(240, 220, 220, 1);
  }
  
  .head {
    backface-visibility: hidden;
    position: relative;
    margin: -250px auto;
    width: 80px;
    height: 80px;
    background-color: #111;
    border-radius: 50px;
    box-shadow: inset -4px 2px 0px 0px rgba(240, 220, 220, 1);
    animation: headAnim 1.5s infinite alternate;
    animation-timing-function: ease-out;
  }
  
  .body {
    position: relative;
    margin: 90px auto;
    width: 140px;
    height: 120px;
    background-color: #111;
    border-radius: 50px/25px;
    box-shadow: inset -5px 2px 0px 0px rgba(240, 220, 220, 1);
    animation: bodyAnim 1.5s infinite alternate;
    animation-timing-function: ease-out;
  }
  
  @keyframes headAnim {
    0% {
      top: 0px;
    }
  
    50% {
      top: 10px;
    }
  
    100% {
      top: 0px;
    }
  }
  
  @keyframes bodyAnim {
    0% {
      top: -5px;
    }
  
    50% {
      top: 10px;
    }
  
    100% {
      top: -5px;
    }
  }
  
  .loadingScreen {
    position: fixed;
    top: 49.5%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    background-color: white;
    width: 1050px;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid #e85d04;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(232, 93, 4, 0.6), 0 0 20px rgba(241, 161, 34, 0.6);
    padding: 5px;
  }
  
  .circ {
    backface-visibility: hidden;
    margin: 60px auto;
    width: 180px;
    height: 180px;
    border-radius: 0px 0px 50px 50px;
    position: relative;
    z-index: 100;
    left: 0%;
    top: 20%;
    overflow: hidden;
  }
  
  .hands {
    margin-top: 140px;
    width: 120px;
    height: 120px;
    position: absolute;
    background-color: #111;
    border-radius: 20px;
    box-shadow: -1px -4px 0px 0px rgba(240, 220, 220, 1);
    transform: rotate(45deg);
    top: 75%;
    left: 16%;
    z-index: 1;
    animation: bodyAnim 1.5s infinite alternate;
    animation-timing-function: ease-out;
  }
  
  .load {
    position: absolute;
    width: 7ch;
    height: 32px;
    text-align: left;
    line-height: 32px;
    margin: -10px auto;
    font-family: 'Julius Sans One', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: rgb(155, 152, 152);
    left: 2%;
    top: 5%;
    animation: fontAnim 3.75s infinite;
    animation-timing-function: ease-out;
    word-wrap: break-word;
    display: block;
    overflow: hidden;
  }
  
  @keyframes fontAnim {
    0% {
      width: 7ch;
    }
  
    16% {
      width: 8ch;
    }
  
    32% {
      width: 9ch;
    }
  
    48% {
      width: 10ch;
    }
  
    64% {
      width: 11ch;
    }
  
    80% {
      width: 12ch;
    }
  
    100% {
      width: 13ch;
    }
  }