:root {
  --purple: #160c28;
  --yellow: #efcb68;
  --lt-grey: #e1efe6;
  --grey: #aeb7b3;
  --black: #000411;
}

* {
  font-family: 'Agave', sans-serif !important;
}

html, body {
  background-color: var(--lt-grey);
  color: var(--black);
}

nav {
  background-color: var(--grey);
}

.navbar-light .navbar-brand {
  color: var(--purple);
}

#bgvideo-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

#bgvideo {
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: contrast(1.2) brightness(0.85) saturate(0.7) blur(0.4px);
}

#bgvideo-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0px,
      transparent 2px,
      rgba(0, 0, 0, 0.25) 2px,
      rgba(0, 0, 0, 0.25) 4px
    );
  animation: scanline-flicker 0.1s infinite;
}

@keyframes scanline-flicker {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 1; }
}

.main.container {
  position: relative;
  z-index: 1;
}

h1 {
  color: var(--yellow);
}

.intro {
  margin-top: 1em;
}

.intro-2 {
  margin-top: calc(100vh);
}

.intro-3 {
  margin-top: calc(100vh);
}

.intro-4 {
  margin-top: calc(100vh);
}

.intro-5 {
  margin-top: 50vh;
}

.intro-6 {
  margin-top: 50vh;
}

.intro-7 {
  margin-top: 50vh;
  margin-bottom: 25vh;
}

.about {
  margin-bottom: 5vh;
}