#presentation-container {
    /*width: 100%;*/
    /*height: 100%;*/
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    outline: none; /* Eliminar el borde de enfoque predeterminado */
    cursor: pointer; /* Cambiar el cursor a una mano para indicar que es interactivo */
}


button {
    margin: 10px; /* Espaciado opcional entre los botones */
}

#botones {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8); /* Fondo semitransparente */
    padding: 10px; /* Espaciado opcional */
    z-index: 999; /* Coloca los botones por encima de otros elementos */
}


