/* Book Section */

.book_section {
    background-color: var(--primary_colour);
    flex-direction: column;
    padding: 80px 20px;
    gap: 75px;
}

.book_section .entry {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.book_section p {
    font-size: 18px;
}

.book_section img {
    border-radius: 0;
}

.book_section .book_cover {
    height: 400px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
}

.book_section .desc {
    max-width: 500px;
}

.book_section .book_date {
    font-weight: 600;
}

.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;
    }
}