/* Cinematic artwork behind the loader wordmark. */
.loader-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  animation: aroCosmicBreath 8s ease-in-out infinite alternate;
}

.loader .space {
  z-index: 1;
  opacity: .53;
  background: linear-gradient(90deg, rgba(4,18,14,.7), rgba(7,29,24,.27) 50%, rgba(4,18,14,.6)), linear-gradient(0deg, rgba(3,15,11,.48), transparent 55%);
}

.loader-copy { text-shadow: 0 3px 22px rgba(0,0,0,.75); }
.loader-copy strong { filter: drop-shadow(0 4px 13px rgba(0,0,0,.65)); }

@keyframes aroCosmicBreath {
  to { transform: scale(1.045); filter: saturate(1.12) contrast(1.04); }
}

@media (max-width:800px) {
  .loader-art { object-position: 62% center; }
  .loader .space { opacity: .62; }
}
