.dragon{
    background: url("./../images/dragon-fly.gif") -30px center no-repeat;
    /* animation: fly 3s infinite; */
    margin: 0 auto;
    width: 200px;
    height: 200px;
    background-size: cover;
  }
  #loadingPage {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    z-index: 9999999999999;
    width: 100%;
    height: 100vh;
    /* background: url("./../images/bg-dragon.png") #FFF center center ; */
    background: url("./../images/001.png") #FFF center center ;
    top: 0;
    background-size: cover;
  }

  #loadingPage.loading {
    background: rgba(255, 255, 255, 0.3);
  }

  .loader {
    width: 50px;
    height: 70px;
    background-image: url("../images/animated-fire-image-0379.gif");
    margin: 0 auto;
    border-radius: 5px;
    animation: load 3s infinite;
    margin-bottom: 30px;
  }

  .dot{
    width:35px;
    height:35px;
    position:absolute;
    background: url(https://static.wixstatic.com/media/040b0b_f3ee5b32d96e43f9abd52b80f678b90d~mv2.gif);
    background-size: 100% 100%;
  }
  
  @keyframes fly {
    0% {background-position: 0px;}
    100% {background-position: 210px;}
  }
  h1 {
    text-align: center;
    font-family: 'Righteous', cursive;
    color: orange;
  }
  .anim {
    animation: bounce 1s infinite;
    display: inline-block;
  }
  .anim {
    animation: bounce 1s infinite;
    display: inline-block;
  }
  .anim2 {
    animation: bounce 1s infinite;
    display: inline-block;
    animation-delay: 0.5s;
  }
  .anim3 {
    animation: bounce 1s infinite;
    display: inline-block;
    animation-delay: 1.5s;
  }
  .anim4 {
    animation: bounce 1s infinite;
    display: inline-block;
    animation-delay: 2.5s;
  }
  .anim5 {
    animation: bounce 1s infinite;
    display: inline-block;
    animation-delay: 3.5s;
  }
  .anim6 {
    animation: bounce 1s infinite;
    display: inline-block;
    animation-delay: 4.5s;
  }
  .anim7 {
    animation: bounce 1s infinite;
    display: inline-block;
    animation-delay: 6s;
  }
  @keyframes bounce {
   0% {
      transform: scale(1.2);
    }
    50% {
      transform: scale(1);
    }
  }