/*
#book {
    position: absolute;
    width: 100vw;
    height: 100vh;
}

#flipbook {
    width: 600px;
    height: 400px;
    position: relative;
}

.page {
    width: 300px;
    height: 400px;
    background: white;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 20px;
    font-size: 18px;
    border-radius: 5px;
}*/


/* Estilos del libro */
#book {
    width: 600px;
    height: 400px;
    position: relative;
}

/* Diseño de cada página */
.page {
    width: 100%;
    height: 100%;
    background: white;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    text-align: center;
}

/* Botones de navegación */
nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

button {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    margin: 0 10px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background: #0056b3;
}