.book-container-outer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: auto;
}

.book-container-inner {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    width: 85%;
    height: auto;
}

.book {
    width: 540px;
    height: 570px;
    border: 0.1px solid rgba(255, 255, 255, 0.3);
    margin: 40px 0px 40px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

}

.book img {
    flex-wrap: wrap;
    width: 100%;
    height: 90%;
    background-color: transparent;
}

@media screen and (max-width: 800px) {

    .book {
        width: 350px;
        height: auto;
    }

    .book img {
        width: 100%;
        height: auto;
    }

}

.book img:hover {
    transform: scale(1.1);
    transition: all 0.5s ease-in-out;
}



.text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.text-container h4 {
    font-family: 'ButlerRegular';
    font-style: normal;
    font-weight: 800;
    font-size: 35px;
    color: #FFFFFF;
    align-items: center;
    text-align: center;
    padding: 30px;
}

.text-container p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.text-container a {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
    text-decoration: none;
}

.m1-top {
    margin-top: 10px;
}