.book {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    height: 90vh;
    background: linear-gradient(140deg, white 70%, rgb(200, 219, 174));
}
.book-img {
    width: 24%;
}

.book-description {
    display: flex;
    flex-direction: column;
    width: 40%;
    gap: 30px;
}

.book-description h1 {
    font-size: 2.5vw;
}

.book-description p {
    font-size: 1.4vw;
    color:rgba(0, 0, 0, 0.712);
}

.book-description-row {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

#pages, #date {
    display: flex;
    gap: 10px;
    align-items: center;
}

.book-button {
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 1.4vw;
    background: linear-gradient(to right, #61CC50, #153885);
    color: #ffffff;
    margin: 10px;
    width: 10vw;
    text-align: center;
}

@media (max-width: 768px) {
    .book {
        flex-direction: column;
        height: 100%;
        padding: 30px 0;
    }
    .book-img {
        width: 70%;
        margin-bottom: 20px;
    }

    .book-description {
        width: 80%;
    }

    .book-description h1 {
        font-size: 5vw;
    }

    .book-description p {
        font-size: 3vw;
    }

    .book-button {
        font-size: 3vw;
        width: 20vw;
    }
}