
html, body{
    background-color: #1e1e1e;
}

.center{
    margin: 0;
    position: absolute;
    top: 50%;
    left:50%;
    margin-right: -50%;
    transform: translate(-50%,-50%);
}

.splashAnimation {
    animation-name: fade;
    animation-timing-function: ease-in-out;
    /* animation-iteration-count: infinite; */
    animation-iteration-count: 6;
    animation-duration: 5s;
    animation-direction: alternate;
  }
  
  @keyframes fade {
    0% {
      opacity: 1;
    }
    25% {
      opacity: 1;
    }
    75% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }