body {
  margin: 0;
  padding: 0;
  background: black;
  color: white;
}

.shadow-green-1 {
  box-shadow: 0 0 5px rgb(var(--green-1) / 0.37),
  0 0 10px rgb(var(--green-1) / 0.28),
  0 0 15px rgb(var(--green-1) / 0.35),
  0 0 25px rgb(var(--green-1) / 0.53),
  0 0 50px rgb(var(--green-1) / .3);
}

.shadow-grey-1 {
  box-shadow: 0 0 5px rgb(var(--grey-1) / 0.37),
  0 0 10px rgb(var(--grey-1) / 0.28),
  0 0 15px rgb(var(--grey-1) / 0.35),
  0 0 25px rgb(var(--grey-1) / 0.53),
  0 0 50px rgb(var(--grey-1) / .3);
}

.hidden {
  display: none;
  opacity: 0;
}

.hidden-visibility {
  visibility: hidden;
}

.transition-100ms {
  transition: all 100ms;
}

.transition-200ms {
  transition: all 200ms;
}

.transition-500ms {
  transition: all 500ms linear;
}

.transition-1s {
  transition: all 1s;
}

.glitch-in {
  opacity: 0;
  animation: blink .8s steps(1) both;
}

.x-move-loop {
  --duration: 10s;
  animation: x-move-loop var(--duration) cubic-bezier(0.47, 0.03, 0.38, 1) infinite;
}

.y-move-loop {
  --duration: 10s;
  animation: y-move-loop var(--duration) cubic-bezier(0.47, 0.03, 0.38, 1) infinite;
}

@keyframes blink {
  0%, 20%, 40% {
    opacity: 0;
  }
  10%, 30%, 100% {
    opacity: 1;
  }
}

@keyframes x-move-loop {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(150px);
  }
}

@keyframes y-move-loop {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(150px);
  }
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  user-select: none;
}

.background__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--foreground);
  z-index: 1;
  transform: translateX(100vw);
}

.background__lines {
  background-size: 697px 649px;
}

.custom-scrollbar::-webkit-scrollbar {
  width: 5px;
  height: 8px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 1);
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.7);
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}
