html {
    min-height: 100%;
}

body {
    min-height: 100%;
    font-family: "Raleway", sans-serif;
    background-color: transparent;
    background-image: url("./img/bg.png"), url("./img/bg2.png");
    background-position: top right, bottom left;
    background-repeat: no-repeat, no-repeat;
    background-size: 25%, 28%;
    color: black;
}

h1 {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 4rem;
}

.subtitle {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-size: 2rem;
}

.price {
    font-size: 4.2rem;
    font-family: "Lato", sans-serif;
}

.currency {
    font-family: "Raleway", sans-serif;
}


@media (max-width: 1000px) {
    body {
        background: white;
    }

    h1 {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.5rem;
    }

    .lead {
        font-size: 1.2rem;
    }

    .price {
        font-size: 3.6rem;
    }
}

@media (max-width: 370px) {
    body {
        background: white;
    }

    h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .lead {
        font-size: 1rem;
    }

    .price {
        font-size: 3rem;
    }
}

p a {
    color: black;
    text-decoration: underline;
}

p a:hover {
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
}

.btn-dark {
    background: black;
}

.bg-dark {
    background: black !important;
}

.modal.fade .modal-dialog {

}

main {

}

#bookPreviewModal .modal-dialog,
#bookPreviewModal .modal-content,
#bookPreviewModal .modal-body {
    height: 90%;
}

.pdfobject-container {
    height: 100%;
    border: 1rem solid rgba(0, 0, 0, .1);
}

footer #pg {
    display: inline-block;
    color: rgba(0, 0, 0, 0.3);
    font-size: 0.8rem;
    line-height: 0.8rem;

    position: relative;
    opacity: 1;
}

footer #pg span {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.9;
    background-color: white;
    transition: left 1s;
}

footer #pg:hover span {
    left: 101%;
}