.book-card {
    display: flex;
    align-self: center;
    max-width: 600px;
    width: 100%;
    background-color: #fff;
    border: 3px solid #000;
    box-shadow: 8px 8px 0px #000;
    padding: 16px;
}
.book-cover {
    flex: 1;
    max-width: 40%;
    border: 3px solid #000;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}
.book-cover img {
    max-width: 100%;
    height: auto;
}
.book-details {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.book-details h2 {
    margin: 0;
    font-size: 1.5rem;
    color: #000;
    text-transform: uppercase;
}
.book-details p {
    margin: 8px 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
}
.book-details .author {
    font-weight: bold;
    color: #555;
}
.book-details .cta {
    margin-top: auto;
}
.book-details .cta a {
    text-decoration: none;
    color: #fff;
    background-color: #000;
    padding: 8px 16px;
    border: 3px solid #000;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
}
.book-details .cta a:hover {
    background-color: #555;
}