button {
  background-color: #222;
  border: 1px solid #555;
  color: gold;
  padding: 0.5rem 1rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #333;
  color: white;
}
