/* style.css */
body {
  font-family: Arial, sans-serif;
  background-color: black;
  color: white;
  text-align: center;
  margin: 0;
  padding: 0;
}

.background {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

h1 {
  font-size: 48px;
  margin-bottom: 30px;
}

.menu button {
  background-color: #444;
  color: white;
  border: none;
  padding: 15px 30px;
  margin: 10px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 5px;
}

.menu button:hover {
  background-color: #666;
}

.hidden {
    display: none;
}