body {
  background-color: #202020;
  overflow: hidden;
}

.font-brains {
  font-family: Brains;
}

.font-oddity {
  font-family: oddity;
}

.wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  color: var(--red);

}

.hud {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 600px;
  height: 400px;
  animation: hud-animation 8s ease-in-out alternate infinite;
  color: var(black)
  filter: blur(0.4px);
}

.hud-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100px;
}

.hud-1-01 {
  display: flex;
  width: 300px;
  justify-content: space-between;
  font-size: 1.3rem;
  font-variation-settings: "wdth" 160, "wght" 400, "ital" 0;
}

.hud-1-01 p {
  transform: rotate(90deg);
}

.hud-1-01 p:nth-child(odd) {
  font-variation-settings: "wdth" 120, "wght" 400, "ital" 0;
  margin-bottom: 8px;
}

.v-shape {
  font-size: 1rem;
  font-variation-settings: "wdth" 130, "wght" 400, "ital" 0;
  animation: v-animation 20s infinite ease-in-out alternate;
  transform: translateX(100px);
}

@keyframes v-animation {
  from {
    transform: translateX(-100px);
  }
  to {
    transform: translateX(+100px);
  }
}

.hud-2 {
  display: flex;
  justify-content: space-between;
  width: 400px;
  height: 60px;
}

.ns {
  display: flex;
  flex-direction: column;
  font-size: 0.7rem;
  font-variation-settings: "wdth" 200, "wght" 200, "ital" 0;
}

.rotate-left {
  transform: scaleY(-1) translate(-3px, 6px);
  font-size: 1.4rem;
}

.rotate-right {
  transform: scaleX(1) rotate(180deg) translate(-3px, 6px);
  font-size: 1.4rem;
}

.text-right {
  text-align: right;
}

.hud-3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 200px;
  height: 100px;
  margin-bottom: 40px;
}

.hud-3-lines {
  display: flex;
  font-size: 1rem;
  font-family: oddity;
  font-variation-settings: "wdth" 200, "wght" 300, "ital" 0;
}

.hud-4 {
  display: flex;
  font-family: oddity;
  gap: 20px;
  font-variation-settings: "wdth" 200, "wght" 300, "ital" 0;
  letter-spacing: -5px;
  margin-bottom: 40px;
  animation: hud-4-animation 5s linear alternate infinite;
  transform: rotate(3deg);
}

.hud-4 p:nth-child(2) {
  transform: translateY(10px);
}

@keyframes hud-4-animation {
  from {
  }
  to {
    transform: rotate(-3deg);
  }
}

.hud-5-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
  height: 200px;
  width: 200px;
  font-family: oddity;
  font-variation-settings: "wdth" 200, "wght" 400, "ital" 0;
  
}

.hud-5-wrapper p:nth-child(1) {
  transform: scaleX(-1) translate(-6px, -7px);
}

.hud-5-wrapper p:nth-child(3) {
  transform: translate(-4px, -7px);
}

@keyframes hud-animation {
  from {
  }
  to {
    transform: rotate(-3deg);
  }
}

#myVideo {
  position: absolute;
  z-index: -999;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  filter: brightness(130%) saturate(0%);
  mix-blend-mode: multiply;
}
