

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }


html{
  width: 100%;
  height: 100%;

}

body{
  position: absolute;
  width: 100%;
  height: 100%;
  user-select: none;
  font-family: mikadob;
  overflow: hidden;
}

.load-page{  
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  background: rgb(255,147,13);
background: linear-gradient(185deg, rgba(255,147,13,1) 45%, rgba(176,56,23,1) 100%);
  z-index: 10;


}
.load-page-content{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.logoload{
  width: 15vw;
  animation: zoomimg 5s;
}
.loadimg{
  width: 24vw;
}
.loadingtxt{
  font-size: 5vw;
  color: white;
  font-family: boldedico;
  animation: pulse 10s infinite;
}

@media (max-width: 780px) and (max-height: 277px){
    .loadimg{
    width: 14vw;
    bottom: 2vh;
  }
  .loadimg2{
    bottom: 1vh;
  }
 
}


@media (orientation: portrait) {
    .logoload{
    width: 50vw;
  }
  .loadimg{
    width: 70vw;
  }
  .loadingtxt{
    font-size: 20vw;
  }
}

