﻿@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');

html {
    -webkit-text-size-adjust: none; /* Prevent font scaling in landscape */
}

body {
    background-color: #333;
    margin: 0;
    padding: 0;
    color:#fff;
    font-family:'Open Sans', sans-serif;
}

.book_container {
    background: #fff;
    font-size: 24px;
    padding: 0;
    margin: 0;
    color: #011844;
    letter-spacing: 0.7px;
    line-height: 22px;
}


.bookpage {
    width: 100%;
    height: 100%;
}

.bookpage-content {
    font-size:16px;
}

.bookpage-content .content {
    margin-top: 50%;
    transform: translateY(-50%);
    text-align: center;
    line-height: 1.4em;
    padding: 0 75px;
}
    .bookpage-content .content .content-title {
        font-size:24px;
        text-transform:uppercase;
        padding:12px 0;
        line-height:1.2em;
        font-weight:bold;
        letter-spacing:1.2px;
    }

    .bookpage-content .content .content-value {
        text-align: justify;
        text-justify: inter-word;
        padding: 12px 0;
    }
.bookpage-images {
    padding: 15px;
}
    .bookpage-images .tbl-content-images {
        width: calc(100% - 30px);
        height: calc(100% - 30px);
    }
    .bookpage-images .tbl-content-images td {
        background-repeat:no-repeat;
        background-size:contain;
        background-position:center center;
    }

    .bookpage-front {
        background-size: contain;
        background-color: rgba(0,0,0,0.07);
    }

    .bookpage-front .title {
        transform: translate(-50%, -50%) !important;
        text-align: center;
        position: relative;
        margin-top: 50%;
        left: 50%;
        font-size: 1.4em;
        line-height:1.2em;
        display: inline-block;
        padding: 10px;
        background: rgba(255,255,255,0.8);
        border-radius: 10px;
        text-transform: uppercase;
        letter-spacing: 3px;
        font-weight: bold;
        max-width: 70%;
    }

.bookpage-back {
    background-color: #011844;
    color: #fff;
    text-align: center;
    font-size:0.8em;
}

    .bookpage-back a {
        color: #fff;
    }

    .bookpage-back .content-holder {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }

    .bookpage-back .logo {
        padding-bottom: 40px;
    }

        .bookpage-back .logo img {
            width: 35%;
            height: auto;
        }


