/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f8f9fa;

}
.mylink {
    color: white;
}
hr {
    width: 60%;
    margin: 0 auto;
}
/* Header and Navigation */
header {
    background-color: #003366;
    padding: 10px 0;
    color: white;
}
.tempH2 {
    font-style: italic;
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Carousel */
.carousel {
    position: relative;
    overflow: hidden;
    background-color: #e9ecef;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.carousel-item {
    display: none;
    flex-direction: row;
    align-items: center;
}

.carousel-item img {
    max-width: 150px;
    margin-right: 20px;
}

.carousel-item .carousel-text {
    max-width: 400px;
}

.carousel-item:first-child {
    display: flex;
}

/* Book Showcase */
.book-showcase {
    padding: 20px;
    text-align: center;
}

.book-showcase h1 {
    margin-bottom: 20px;
    color: #003366;
}

.book {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.book img {
    max-width: 120px;
    margin-right: 20px;
}

.book-description {
    text-align: left;
}

/* Footer */
footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-item {
        flex-direction: column;
        text-align: center;
    }

    .carousel-item img {
        margin: 0 0 10px 0;
    }

    .book {
        flex-direction: column;
    }

    .book img {
        margin: 0 0 10px 0;
    }
}
