#splash-screen{
    width: 100%;
    height: 100%;
    position: fixed;
    background: white;
    background-size: cover;
    z-index: 9999;
}
.splash-container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.splash-container>img{
    width: 120px;
    height: auto;
    animation: rotation infinite 3s linear;
}
@keyframes rotation{
  from{
    transform:rotateY(0deg);
  }
  
  to{
    transform:rotateY(360deg);
  }
}