/* style.css */
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  text-align: center;
  background: url('zstadium.jpg') no-repeat center center fixed;
  background-size: cover;
  color: rgb(0, 0, 0);
}

.home h1 {
  font-size: 3em;
  margin-top: 50px;
}

.menu {
  margin-top: 30px;
}

button {
  font-size: 1.2em;
  padding: 15px 30px;
  margin: 15px;
  border: none;
  border-radius: 12px;
  background: #28a745;
  color: white;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

button:hover {
  background: #b3c8b7;
}

footer {
  position: fixed;
  bottom: 10px;
  width: 100%;
  font-size: 0.9em;
}
