#wave {
    position: fixed;
    padding-top: 50vh;
    text-align: center;
    width: 100%;
    height: 200%;
    margin-left: auto;
    margin-right: auto;
    z-index: 9999;
    background-color: white;
  }

  #wave.covid {
    margin-top: -105px;
    position: fixed;
    padding-top: 50vh;
    text-align: center;
    width: 100%;
    height: 200%;
    margin-left: auto;
    margin-right: auto;
    z-index: 9999;
    background-color: white;
  }

#wave .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 3px;
    /*background: #10cae7;*/
    background: #5E7A8E;
    animation: wave 1.3s linear infinite;
  }
#wave .dot:nth-child(2) {
    animation-delay: -1.1s;
  }
#wave .dot:nth-child(3) {
    animation-delay: -0.9s;
  }
  
@keyframes wave {
    0%, 60%, 100% {
      transform: initial;
    }
    30% {
      transform: translateY(-15px);
    }
  }