body {
  margin: 0;

  //background-image: url("/images/Fondo.png"); /* Ruta de la imagen de fondo */
  //background-size: cover; /* Ajusta la imagen para cubrir toda la pantalla */
  //background-position: center; /* Centra la imagen de fondo */
  //background-repeat: no-repeat; /* Evita que la imagen se repita */
  //background-attachment: fixed; /* Hace que el fondo sea fijo al hacer scroll */
  color: #fff;
}
#container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#container {
  width: 100vw;
  height: 100vh;
  background-image: url("../images/Fondo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.logo {
  max-width: 150px;
  /* Ajusta el tamaño según sea necesario */
  margin: 0 auto;
  display: block;
}

.menu {
  position: absolute;
  width: 300px;
  height: auto;
  background: white;
  border-radius: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
.menu h1 {
  font-size: 24px;
  background: #4ca1af;
  color: white;
  padding: 10px;
  border-radius: 5px;
}
.menu button {
  display: block;
  width: 100%;
  padding: 15px;
  margin: 10px 0;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  color: white;
}
.menu button:nth-child(3) {
  background: #f9a825;
}
.menu button:nth-child(4) {
  background: #ab47bc;
}
.menu button:nth-child(5) {
  background: #e53935;
}
