body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.coming-container {}

.background {
  width: 100vw;
  height: 100vh;
  position: fixed;
  overflow: hidden;
}

.background img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  justify-content: center;
  z-index: 2;
  width: 100%;
}
/*.center img{*/
/*  width: 80%;*/
/*  object-fit: cover;*/

/*  position: absolute;*/
/*  top: 50%;*/
/*  left: 50%;*/
/*  transform: translate(-50%, -50%);*/
/*}*/

/*.logo {*/
/*  width: 6%;*/
/*  position: absolute;*/
/*  top: 5%;*/
/*  left: 5%;*/
/*  margin-left: 20px;*/
/*}*/

.comming-soon-2 {
  display: none;
}

.shadow-parent {
  width: 100vw;
  position: absolute;
  bottom: 0;
  animation: scale-it 6s ease-in infinite;
  display: flex;
  justify-content: center;
  align-items: end;
  opacity: 0.5;
  z-index: 1;
}

.shadow-parent img {
  width: 80%;
  height: 80%;
  object-fit: cover;
}

@keyframes scale-it {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }

}


.logo {
  position: absolute;
  left: 0;
}

.coming-block {}

.center {}

@media (max-width: 768px) {
  .logo {
    width: 20%;
   transform: translateX(-50%);
    left: 45%;
    /* top: 10%; */
  }
  
  .comming-soon-2 {
    display: block;
  }
  .comming-soon{
    display: none;
  }
}