.page{
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
}
.loader{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.spinner {
    width: 44px;
    height: 44px;
    animation: spinner-y0fdc1 2s infinite ease;
    transform-style: preserve-3d;
   }
   
   .spinner > div {
    background-color: rgba(0, 166, 255, 0.2);
    height: 100%;
    position: absolute;
    width: 100%;
    border: 2px solid #10baf8;
   }
   
   .spinner div:nth-of-type(1) {
    transform: translateZ(-22px) rotateY(180deg);
   }
   
   .spinner div:nth-of-type(2) {
    transform: rotateY(-270deg) translateX(50%);
    transform-origin: top right;
   }
   
   .spinner div:nth-of-type(3) {
    transform: rotateY(270deg) translateX(-50%);
    transform-origin: center left;
   }
   
   .spinner div:nth-of-type(4) {
    transform: rotateX(90deg) translateY(-50%);
    transform-origin: top center;
   }
   
   .spinner div:nth-of-type(5) {
    transform: rotateX(-90deg) translateY(50%);
    transform-origin: bottom center;
   }
   
   .spinner div:nth-of-type(6) {
    transform: translateZ(22px);
   }
   
   @keyframes spinner-y0fdc1 {
    0% {
     transform: rotate(45deg) rotateX(-25deg) rotateY(25deg);
    }
   
    50% {
     transform: rotate(45deg) rotateX(-385deg) rotateY(25deg);
    }
   
    100% {
     transform: rotate(45deg) rotateX(-385deg) rotateY(385deg);
    }
   }
body {
    margin: 0;
    padding: 0;
    background: rgb(29, 29, 29);
    background: rgb(48, 63, 159);
    background: -moz-radial-gradient(circle, rgba(48, 63, 159, 1) 18%, rgba(29, 29, 29, 1) 100%);
    background: -webkit-radial-gradient(circle, rgba(48, 63, 159, 1) 18%, rgba(29, 29, 29, 1) 100%);
    background: radial-gradient(circle, rgba(48, 63, 159, 1) 18%, rgba(29, 29, 29, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#303f9f", endColorstr="#1d1d1d", GradientType=1);
  }

  body {
    min-height: 100vh;
    text-align: center;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    font-family: Arial, Verdana, sans-serif;
    font-size: 24px;
    color: #fff;
  }

  a {
    color: #fff;
  }

  @keyframes bounceIn {

    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0);
      opacity: 1;
    }

    40% {
      transform: translateY(-30px);
    }

    60% {
      transform: translateY(-15px);
    }
  }
  .logo{
    width: 20vw;
    height: 20vw;
  }
  .bounce {
    animation: bounceIn 2s infinite 2s;
  }
  .eimg{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
