<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.loader {
  justify-content: center;
  align-items: center;
  z-index: 100;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.loader--show {
  display: flex;
}

.loader--hide {
  display: none;
}

.loader img {
  position: relative;
  display: block;
  width: 60%;
  max-width: 400px;
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0% {
    top: 0;
  }
  50% {
    top: 20px;
  }
  100% {
    top: 0;
  }
}

.container--show {
  display: flex;
  flex-direction: column;
}

.container--hide {
  display: none;
}
</pre></body></html>