.loader
{

    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display:flex;
    justify-content: center;
    align-items: center;
    background-color:#090e34;
    
}
.loader-image{
    display: inline-block;
  width: 50px;
  height: 30px;
  position: relative;
    animation: zoom-in-zoom-out 5s forwards 1;
}
@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(20, 20);
  }
  100% {
    transform: scale(20, 20);
  }
}