loading-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: all;
  background-color: black;
  transition: background-color 0.3s;
}
loading-screen img {
  width: 200px;
  height: 200px;
  transition: opacity 0.3s;
  animation-duration: 1s;
  animation-name: loading;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

loading-screen.done {
  background-color: rgba(0, 0, 0, 0);
  pointer-events: none;
}
loading-screen.done img {
  opacity: 0;
}

@keyframes loading {
  100% {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=loading_screen.css.map */