* {
    -webkit-tap-highlight-color: transparent;
}
body {
    margin: 0;
    padding: 0;
    
    background-color: #000;
    
    color: #fff;
    height: 100vh;
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
}

.container {
    text-align: center;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 255, 0, 0.2) 0%,
    transparent 50%
  );
  animation: soft-pulse 8s ease-in-out infinite;
  z-index: 9999;
  pointer-events: none;
}

@keyframes soft-pulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.5; }
}