body {
  position: relative;
  background: #030303;
  min-height: 100vh;
}

.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: -2;
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: rgba(3, 3, 3, 0.82);
  z-index: -1;
}

section {
  scroll-margin-top: 6rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

summary::-webkit-details-marker {
  display: none;
}

p,
li {
  text-align: justify;
  text-justify: inter-word;
}

.text-center p,
.text-center li {
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .background-video {
    display: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
