#app > .splash {
  position: fixed;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.splash-animation {
  width: 1024px;
  height: 576px;
  background-image: url(./web.png);
  /*background-image: url(./web_christmas.png);*/
  background-repeat: no-repeat;
  background-size: auto;
  animation: gif steps(23) 2.5s infinite;
  position: absolute;
}

@keyframes gif {
  from {
    background-position: 0px;
  }

  to {
    background-position: 100%;
  }
}
