body {
    background-image: url('../images/GreenVelvetBackground.png');   
    background-repeat: repeat; /* Tile the banner across the page as needed. */
    background-color: #081F0F; /* Dark green background as fallback. */
    background-position: top left;
    margin: 0 auto;   /* Centers the text block on the screen. */
    padding: 40px 20px; /* Gives the text some breathing room. */
}

main {
    color: #f5e2ee;
    font-family: Helvetica, Arial, Verdana, sans-serif;
    font-weight: 400;
    line-height: 24px;
    max-width: 800px; /* Keeps the line length comfortable for reading. */
}

main a {
    color: #f5e2ee;
}

header {
    margin: 0;
    font-family: "Trebuchet MS", arial, sans-serif;
    font-size: 40px;
    color: #f5e2ee;
}

.series-entry {
    margin-bottom: 40px;
}

.series-entry h2 {
    margin-top: 0;
    margin-bottom: 15px;
}

/* Container for each book */
.book-entry {
    margin-bottom: 40px; /* Adds breathing room between books */
    overflow: hidden; /* This "clears" the float, ensuring the container stretches to fit the image even if the text is short */
}

/* The book title */
.book-entry h2 {
    margin-top: 0;
    margin-bottom: 15px;
}

/* The floated cover image */
.book-cover {
    float: left; /* Pushes the image to the left and lets text wrap right */
    width: 150px; /* Adjust this to fit your actual images */
    margin-right: 20px; /* Creates a gap between the image and the text */
    margin-bottom: 10px; /* Keeps text from hugging the bottom edge when it wraps under */
}
