img {
  aspect-ratio: 1;
  width: 25vmin;
  height: 20vmin;
  margin: 10vmin;
}

#loading img {
  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.33s 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);
  }
}
