img {
    height: 220px;
    border-radius: 15px;
}

.row {
    margin: 20px;
}

#detalles {
    border: 1px solid;
    color: antiquewhite;
    margin: auto;
    display: flex;
    justify-content: center;
    margin-right: 1px;
    background-color: #003893;
    transition: all 0.3s ease-in-out;
    /* Add transition for smooth effects */
}

#detalles:hover {
    background-color: #002b73;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    /* Add a subtle shadow on hover */
    transform: translateY(-5px);
    /* Slightly lift the button on hover */
}