*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.main{
    background-color: #fc5006;
    width: 100%;
    height: 100vh;
    text-align: center;
    overflow: hidden;
}
.header{
    padding-top: 80px;
}
.header figure{
    max-width: 170px;
    margin: auto;
 }
.header figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.comming-soon{
  height: 100%;
  width: 100%;
  position: relative;
}
.comming-soon figure{
  max-width: 400px;
  position: absolute;
  left: 50%;
  top: 34%;
  transform: translate(-50% ,-50%);
}
.comming-soon figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 767px){
    .header{
        padding-top: 50px;
    }
    .header figure{
       max-width: 120px;
       margin: auto;
    }
    .comming-soon{
        height: calc(100% - 135px);
    }
    .comming-soon figure{
        max-width: 300px;
    }
}