@import url('https://fonts.googleapis.com/css2?family=Bangers&display=swap');

body {
    font-family: 'Bangers', sans-serif;
    background-color: #1a1a1a;
    color: #f0f0f0;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 20px;
    background-image: url('A_dark,_comic_book-style_halftone_background_textu.png');
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}


.comic-container {
    width: 90%;
    max-width: 1000px;
    background-color: #2c2c2c;
    padding: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    border: 5px solid #444;
    margin-bottom: 20px;
    position: relative;
}

.comic-title {
    text-align: center;
    color: #ff4444;
    font-size: 48px; /* Larger title font size */
    margin-bottom: 20px;
    text-shadow: 4px 4px #000;
    font-family: 'Bangers', cursive; /* Comic book font */
}

.comic-intro, .comic-page p {
    font-size: 20px;
    line-height: 1.6;
    color: #f0f0f0;
    background: #3a3a3a;
    padding: 15px;
    border-radius: 8px;
    border: 3px solid #444;
    box-shadow: 5px 5px #000;
}

.comic-page {
    margin-bottom: 30px;
    text-align: center;
}

.comic-page img {
    width: 100%;
    height: auto;
    border: 5px solid #444;
    box-shadow: 10px 10px #000;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.comic-page img:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

.comic-page h2 {
    font-size: 36px;
    color: #ff4444;
    margin-bottom: 10px;
    text-shadow: 2px 2px #000;
}

.nav-link a {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    font-size: 24px;
    background-color: #ff4444;
    color: #f0f0f0;
    border-radius: 5px;
    text-decoration: none;
    text-shadow: 2px 2px #000;
    border: 3px solid #444;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.nav-link a:hover {
    background-color: #ff6666;
    transform: translateY(-3px);
}
