body {
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #1a1a1a, #333);
  font-family: 'Press Start 2P', cursive;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

#menu {
  text-align: center;
}

h1 {
  font-size: 28px;
  color: #ff4444;
  text-shadow: 2px 2px 0px black;
}

input {
  display: block;
  margin: 10px auto;
  padding: 10px;
  font-family: 'Press Start 2P', cursive;
}

button {
  font-size: 16px;
  padding: 12px 25px;
  margin: 5px;
  border: none;
  border-radius: 8px;
  background-color: #ff4444;
  color: white;
  cursor: pointer;
  font-family: 'Press Start 2P', cursive;
  transition: transform 0.2s;
}

button:hover {
  transform: scale(1.1);
  background-color: #ff2222;
}
