html,
body {
  margin: 0;
  padding: 0;
}

body {
  background-color: white;
}

#loading {
  position: fixed;
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: white;
}

#loading.init_done {
  opacity: 0.05;
  transition: opacity 0.5s;
}

#loading img {
  max-width: 100%;
  height: auto;
  animation: 1s ease-in-out 0s infinite alternate breathe;
  opacity: 0.66;
  transition: opacity 0.4s;
}

#loading.main_done img {
  opacity: 1;
}

#loading.init_done img {
  animation: 0.5s ease-in-out 0s 1 forwards zooooom;
  opacity: 0.05;
}

@keyframes breathe {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(0.95);
  }
}

@keyframes zooooom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(0.01);
  }
}
