html {
    background: #e6e9e9;
    background-image: linear-gradient(270deg, rgb(230, 233, 233) 0%, rgb(216, 221, 221) 100%);
    -webkit-font-smoothing: antialiased;
}


@font-face {
    font-family: 'Avenir';
    src: url('img/Avenir.wtc') format('Avenir');
    font-weight: normal;
    font-style: normal;
}

body {
    background: #fff;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.06);
    color: #545454;
    font-family: Avenir, sans-serif;
    font-size: 20px;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 90%;
    padding: 2em 2em 4em;
}

h1, h2, h3, h4, h5, h6 {
    color: #222;
    font-weight: 600;
    line-height: 1.3;
}

h2 {
    margin-top: 1.3em;
}

a {
    color: #0083e8;
}

b, strong {
    font-weight: 600;
}

samp {
    display: none;
}

img {
    background: transparent;
    display: block;
    margin: 1.3em auto;
    max-width: 95%;
}

.container {
    display: flex; /* Use flexbox for layout */
    vertical-align: top;
}

.left-column {
    width: 200px; /* Fixed width for left column */
    padding: 15px; /* Some padding */
}

.right-column {
    flex-grow: 1; /* Take up remaining space */
    padding: 15px; /* Some padding */
}

.image-gallery {
    display: flex; /* Use flexbox for layout */
    overflow-x: auto; /* Enable horizontal scrolling */
    white-space: nowrap; /* Prevent wrapping of images */
    padding: 10px; /* Padding around the container */
    justify-content: space-between; /* Space between images */
//    flex-wrap: wrap; /* Allow wrapping if necessary */
}

.image-gallery img {
    max-width: 100%; /* Ensure images are responsive */
    height: auto; /* Maintain aspect ratio */
    margin-right: 10px; /* Space between images */
}

.header-container {
    overflow: auto; /* Clears floats */
//    display: flex;
}

.left-text {
    font-size: 70px;
    font-weight: bold;
    float: left; /* Floats text to the left */
    
}

.right-image {
    float: right; /* Floats image to the right */
    width: 200px; /* Adjust width as needed */
    height: auto; /* Maintains aspect ratio */
}

.books-left-column {
    width: 50%; /* Fixed width for left column */
    padding: 15px; /* Some padding */
    
}

.books-right-column {
    flex-grow: 1; /* Take up remaining space */
    padding: 15px; /* Some padding */
}

.book-picture {
    padding-top: 0px;
    padding-left: 20px;
    padding-right: 20px;
    
    
}