* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Google Fonts: Raleway */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap');

body {
  font-family: 'Raleway', Arial, sans-serif;
  background-image: url('../img/portada-esbari-2.jpg');
}

.center-menu {
  background-color: rgba(0, 0, 0, 0.76);
  width: 30%;
  margin: 0 auto;
  padding: 20px;
  border-radius: 20px;
}

.button-web {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.2em;
  font-weight: bold;
  color: #fff;
  background: #42523C;
  border: 2px solid #fff; /* Filete blanco */
  border-radius: 50px; /* Marco redondeado */
  text-decoration: none;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  margin: 10px;
  width: 250px; /* Tamaño uniforme */
  text-align: center;
}

.button-web:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  background: #5a6b4c;
}

.menu ul {
  list-style: none; /* Eliminar viñetas */
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centrar los elementos */
  gap: 15px;
}

@media (max-width: 768px) {
  .center-menu {
    width: 90%;
  }
}

@media (min-width: 1124px) {
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }

  .center-menu {
    position: relative;
    transform: none;
  }
}

