:root {
  color-scheme: light;
  background: #fff;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-width: 320px;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #fff;
}

body {
  display: grid;
  place-items: center;
  font-family: Georgia, "Times New Roman", serif;
}

.hero {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  isolation: isolate;
  background: #fff;
}

.artboard {
  position: relative;
  width: min(100vw, calc(100vh * 1.793345));
  height: min(100vh, calc(100vw / 1.793345));
  overflow: hidden;
  background: #fff;
}

.scene {
  position: absolute;
  inset: 0;
}

.layer {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
  opacity: 0;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
  will-change: opacity;
}

.layer-hands {
  animation: reveal-hands 19s ease-in-out infinite;
}

.layer-logo {
  animation: reveal-logo 19s ease-in-out infinite;
}

.layer-coming-soon {
  animation: reveal-coming-soon 19s ease-in-out infinite;
}

/*
  Timeline:
  00–03s  white
  03–06s  hands fade in
  06–09s  HG + HANDS OF GOD fade in
  09–12s  coming soon… fades in
  12–16s  complete image rests
  16–19s  fade to white, then restart
*/
@keyframes reveal-hands {
  0%,
  15.789% {
    opacity: 0;
  }

  31.579%,
  84.211% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes reveal-logo {
  0%,
  31.579% {
    opacity: 0;
  }

  47.368%,
  84.211% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes reveal-coming-soon {
  0%,
  47.368% {
    opacity: 0;
  }

  63.158%,
  84.211% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .layer {
    animation: none;
    opacity: 1;
  }
}
