.booksarea {
    background-image: url(../img/brand/background-bloodlat-dkt.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-wrap: wrap;
    max-width: 2000px;
    margin-left: auto;
    margin-right: auto;
}

.bookscont {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    
}

.book {
    width: calc(50% - 20px);
    margin: 10px;
    box-sizing: border-box;
    align-items: flex-start;
    text-align: center;
}

.book h2 {
    text-align: center;
    color: #333534;
    font-size: 1.5rem;
    padding-bottom: 10px;
}

.book h2:hover {
    text-align: center;
    color: #B1090B;
    font-size: 1.5rem;
    
}

.book img {
    width: auto;
    height: 300px;
    align-content: center;
    border-radius: 20px;
    padding-bottom: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 40px;
    
}

.book img:hover {
    transform: scale(1.1);
}

.book p {
    text-align: center;
    line-height: 1.5;
    margin-bottom: 10px;
}

.book a {
    text-align: center;
     margin-top: auto; /* Mueve el enlace hacia la parte inferior del contenedor para centrarlo verticalmente */
    display: inline-block;
    
}



.otro-contenido {
    width: 100%;
    margin-top: 20px;
    box-sizing: border-box;
}

/* Ajustes para pantallas más pequeñas */
@media only screen and (max-width: 768px) {
    .book {
        width: calc(100% - 20px);
    }
    
    .booksarea { 
        background-image: url(../img/brand/bloodhandmob.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .otro-contenido {
        width: 100%;
    }
}

/* Ajustes para pantallas aún más pequeñas */
@media only screen and (max-width: 480px) {
    .book {
        width: 100%;
    }
}



@media only screen and (max-width: 600px) { 

    .book {
        padding: 20px;
    }

}
    


@media only screen and (min-width: 601px) {
    
    .book {
        padding: 20px;
    }

}


@media only screen and (min-width: 1080px) { 
    
    .book {
        padding: 20px;
    }


}


@media only screen and (max-width: 650px) {
    
    .bookscont {
        flex-direction: column;
        width: 600px;
        margin-left: auto;
        margin-right: auto;
        padding: 20px;
    }

}

@media only screen and (max-width: 1600px) {
    
    .booksarea { 
        background-image: url(../img/brand/bloodhandmob.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }


}




