/* Book Section */

.book_section {
    background-color: var(--primary_colour);
}

.book_section img {
    border-radius: 10px;
}

.book_section #book_cover {
    height: 400px;
}

.book_section #book_date {
    font-size: 24px;
}

.book_section #book_intro {
    max-width: 500px;
}

.book_section .buttons {
    display: flex;
    gap: 20px;
}

.book_section #goodreads {
    background-color: #d4d0ba;
}

@media only screen and (max-width: 865px) {
    .book_section #book_cover {
        width: 100%;
        height: auto;
    }
}


/* Quotes Section */

/* TEMP REMOVAL */
.quote_section {
    display: none;
}

.quote_section .quote {
    background-color: var(--secondary_colour);
    min-height: 350px;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    padding: 20px;
    border-radius: 15px;
}

.quote_section .quote .author {
    font-weight: 700;
}

@media only screen and (max-width: 865px) {
    .quote_section .quote {
        min-height: auto;
        height: auto;
        width: auto;
        gap: 30px;
    }

    .quote_section .quote img {
        width: 40px;
    }
}


/* About Section */

.about_section {
    /* background-color: var(--primary_colour); */
    /* background-color: var(--bg_colour); */
    background-color: white;
}

.about_section .content {
    text-align: right;
    align-items: flex-end;
}

.about_section #about_tagline {
    font-size: 24px;
}

.about_section #about_intro {
    max-width: 500px;
}

.about_section img {
    border-radius: 10px;
}

@media only screen and (max-width: 865px) {
    .about_section .content {
        text-align: center;
        align-items: center;
    }

    .about_section img {
        width: 100%;
    }
}