/* Resetear estilos por defecto */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-image: url('IMG/F2.png');
  background-size: cover;
  padding: 0 20px;
}

.menu {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  color: white;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 600px; /* Ancho máximo para el menú */
  display: flex;
  flex-direction: column; /* Cambia la dirección del flujo a columna */
}

h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

p {
  font-size: 18px;
  margin-bottom: 20px;
}

button {
  padding: 10px 20px;
  margin: 5px 0; /* Espaciado entre los botones */
  border: none;
  border-radius: 5px;
  background-color: #8350AB;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%; /* Ocupa todo el ancho disponible */
}

button:hover {
  background-color: #5075AB;
}

.footer {
  background-color: black;
  color: white;
  text-align: center;
  padding: 10px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-images img {
  width: 50px;
  margin-left: 10px;
}

/* Media queries para hacer el diseño responsive */
@media (min-width: 768px) {
  .container {
    padding: 0 50px; /* Ajusta el padding para pantallas más grandes */
  }
}
