.start-loading{
    position: static;
    top:0;
    left:0;
    width: 100vw;
    height:100vh;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    animation: 1.5s shine linear infinite;
    display: flex;
    align-items: center;
    align-content: center;
    color:#333;
    text-align: center;
    direction: rtl;
    font-family: Tahoma;
}
.start-loading img{
    width:200px;
    max-width:100%;
}
.start-loading p{
    margin-top:40px;
    background-image: linear-gradient(
    -225deg,
    #231557 0%,
    #44107a 29%,
    #ff1361 67%,
    #fff800 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  font-size: 28px;
}
.gelatine {
    animation: gelatine 1.5s infinite;
  }
  @keyframes gelatine {
    from, to { transform: scale(1, 1); }
    25% { transform: scale(0.9, 1.1); }
    50% { transform: scale(1.1, 0.9); }
    75% { transform: scale(0.95, 1.05); }
  }
@keyframes shine {
    to {
      background-position-x: -200%;
    }
  }
  @keyframes textclip {
    to {
      background-position: 200% center;
    }
  }