#splash {
  position: fixed;
  inset: 0;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000000;
  height: 100%;
  width: 100%;
  opacity: 1;
  transition: opacity 0.5s ease;
}

#splash video {
  width: 400px;
  height: 400px;
  object-fit: contain;
  transform: translateY(-60px);
}
.light-mode #splash video {
  filter: invert(1) hue-rotate(200deg) saturate(1.2);
}

#splash .brand {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.25em;
  text-indent: 0.25em;
}
