.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

.VFX-container {
  animation: crt-vertical-jitter 0.05s infinite steps(1);
}

@keyframes crt-vertical-jitter {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-1px);
  }
  50% {
    transform: translateY(1px);
  }
  75% {
    transform: translateY(-0.5px);
  }
  100% {
    transform: translateY(0.5px);
  }
}

.VFX {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  pointer-events: none;
  overflow: hidden;
}

.AmbientAudio,
.serverAudio {
  display: none;
}

.effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  z-index: -1;
}

.acryl {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(5px);
}
