* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Times New Roman", Times, serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  text-align: center;
}

.header {
  background-color: #666;
  color: white;
  padding: 30px;
  font-size: 28px;
  font-weight: bold;
}

.menu-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 50px;
}

.menu-item {
  text-decoration: none;
  background-color: #fcc;
  color: black;
  padding: 20px 40px;
  border: 2px solid #333;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}

.menu-item:hover {
  background-color: #ff9999;
  transform: scale(1.1);
}

.footer {
  background-color: #666;
  color: white;
  padding: 20px;
  font-size: 20px;
  font-weight: bold;
}
