.card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#flipbook {
    align-items: center;
    width: 1200px; /* Aumentar a largura do flipbook */
    height: 600px; /* Aumentar a altura do flipbook */
    margin: 0 auto;
}

.page {
    width: 600px; /* Aumentar a largura das páginas */
    height: 600px; /* Aumentar a altura das páginas */
    background-color: white;
    border: 1px solid #ccc;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page img {
    max-width: 100%;
    max-height: 100%;
}

.hard {
    background: #ccc;
}

.page-title {
    font-size: 32px; /* Aumentar o tamanho do título */
    font-weight: bold;
}

.card-body {
    padding: 20px;
}

.shadow-sm {
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.rounded {
    border-radius: 0.25rem;
}
