/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

/* Header */
header {
    background: #fff;
    width: 100%;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff4500;
}

/* Centering Content */
#itemContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

/* Manga Cover */
.cover-image {
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

/* Footer */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 20px;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}
/* Chapters Section */
#chapters {
    text-align: center;
}

.chapter-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.chapter-list li {
    margin: 10px 0;
}

.chapter-list li a {
    display: block;
    background: #ff4500;
    color: white;
    padding: 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.chapter-list li a:hover {
    background: #e03e00;
}
/* About Page */
#about {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.about-list li {
    background: #ff4500;
    color: white;
    padding: 12px;
    border-radius: 5px;
    margin: 5px 0;
    font-weight: bold;
}

#readButton {
    padding: 10px;
    border-radius: 5px;
    background-color: #a17a10;
    text-decoration: none;
    color: white;
}

#readButon {
    border: 2px: black;
    background-color: green;
}


