/* Reset */
body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background: #000;
  color: #fff;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* Rain Overlay */
.rain-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 2px 100px;
  animation: rain 0.5s infinite linear;
  z-index: 1;
  pointer-events: none;
}

@keyframes rain {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}

/* Container */
.container {
  text-align: center;
  z-index: 2;
  position: relative;
}

/* Pixelated SMTH */
.pixel-text {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  font-size: 0;
}

.pixel-text span {
  display: inline-block;
  font-size: 100px;
  font-weight: bold;
  color: white;
  opacity: 1; /* Initially visible */
}

@keyframes pixelFlicker {
  0%, 70% {
    opacity: 1;
  }
  20%, 90% {
    opacity: 0.2;
  }
}

/* Smaller Text */
.subtext, #reveal p {
  font-size: 1rem;
  color: #aaa;
}

.date {
  font-weight: bold;
  color: #fff;
}