.book-reviews {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3vh;
    background-color: #062023;
}


.book-review {
    width: 70%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin: 10px;
    padding: 20px;
    border-radius: 10px;
    background-color: #53B4C0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.book-review-data {
    max-width: 50%;
    padding-top: 2vh;
    padding-bottom: 2vh;
}

.book-title {
    margin-top: 5px;
    font-size: 1.8em;
    text-align: left;
    font-weight: bold;
    color: #062023;
    margin-bottom: 5px;
}

.book-review-text {
    font-size: 1.1em;
    color: #062023;
    margin-bottom: 10px;
}

.book-review > img {
    max-width: 30%;
    height: auto;
}

@media (max-width: 600px) {
    .book-review {
        width: 90%;
        flex-direction: column;
    }
    .book-review-data {
        max-width: 95%;
    }
    .book-review > img {
        /* margin-top: 30px; */
        max-width: 70%;
        height: auto;
    }
}