/* Reset body styles */
body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: 'Courier New', Courier, monospace;
  background: black;
  color: #00ff00;
}

/* Canvas for Matrix Effect */
#matrix {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Typewriter Effect */
.typewriter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2em;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #00ff00; /* Cursor effect */
  animation: blink 0.7s step-end infinite;
}

/* Cursor blinking effect */
@keyframes blink {
  50% {
    border-color: transparent;
  }
}

