body {
  background-color: black;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  margin: 0;
  font-family: 'Courier New', monospace;
}

.menu {
  list-style-type: none;
  padding: 0;
  margin: 20px 0;
}

.menu li {
  margin: 15px 0;
  white-space: nowrap;
}

.menu li span {
  display: inline-block;
  overflow: hidden;
  width: 0;
  animation: typing 2s steps(10, end) forwards;
}

.menu li:nth-child(1) span {
  animation: typing 2s steps(4, end) forwards;
}

.menu li:nth-child(2) span {
  animation: typing 3s steps(4, end) forwards;
  animation-delay: 2.2s;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

.menu a {
  color: white;
  text-decoration: none;
  font-size: 1.5em;
  transition: color 0.8s ease, filter 1.8s ease;
}

.menu a:hover {
  color: #8B0000;
  filter: blur(6px);
  transition: color 0.8s, filter 1.2s ease;
}

