* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: sans-serif;
  background-color: #18bde2; /* Turquesa */
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  padding: 20px;
}

.main-image {
  max-width: 100%;
  height: auto;
  max-height: 300px;
  margin-bottom: 30px;
}

.menu-button {
  background-color: rgb(219, 101, 54);
  color: #fff;
  padding: 15px 25px;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 8px;
  transition: background 0.3s ease;
}

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

/* Responsivo para móviles y tabletas */
@media (max-width: 768px) {
  .main-image {
    max-height: 200px;
  }

  .menu-button {
    font-size: 1rem;
    padding: 12px 20px;
  }
}
