
body {
    font-family: Arial, sans-serif;
    background-color: #e0f7fa;
    margin: 0;
    padding: 20px;
}
.book-cover {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
}

.link-container {
    text-align: center;
    margin-top: 20px;
}
.link-container a {
    text-decoration: none;
    color: #0073e6;
}
.container {
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    color: #00838f;
    text-align: center;
}

.image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.image-item {
    margin: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.image-item:hover {
    transform: scale(1.05);
}

img {
    max-width: 200px;
    max-height: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        -webkit-user-drag: none;
        -moz-user-drag: none;
        -o-user-drag: none;
        user-drag: none;

}

#modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

#modal-image {
    display: block;
    margin: 50px auto;
    max-width: 80%;
    max-height: 80%;
}

#close {
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    position: absolute;
    right: 35px;
    top: 15px;
    cursor: pointer;
}
.quote {
    font-size: 1.2em;
    color: #555555;
    margin: 20px 0;
    padding: 10px;
    border-left: 4px solid #007BFF;
    background-color: #f0f8ff;
    border-radius: 4px;
    display: inline-block;
    text-align: left;
}
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-family: Arial, sans-serif;
}

footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

footer p {
    margin: 10px 0;
}

footer a {
    color: #1e90ff;
    text-decoration: none;
    margin: 0 5px;
}

footer a:hover {
    text-decoration: underline;
}

footer .footer-content a {
    display: inline-block;
    margin: 0 10px;
}

footer .footer-content p {
    font-size: 14px;
}

footer .footer-content p a {
    font-size: 14px;
}

footer .footer-content p a:hover {
    color: #ff6347;
}