body {
    color: white;
    background: #020202;
    margin: 0;
    font-family: 'Noto Serif', Verdana, sans-serif;
}

h1, h2 {
    text-align: center;
    color: deeppink;
}

p {
    padding: 20px;
    font-size: 1.2em;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.comic {
    margin: 20px;
    text-align: center;
    max-width: 300px;
}

.comic img {
    max-width: 100%;
    height: auto;
}

.rounded-rectangle {
    width: 350px;
    height: 40px;
    background-color: #8A0000;
    color: white;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    margin: auto;
    margin-top: 20px;
}




@keyframes glow-golem {
    0% {
        color: white;
        text-shadow: 0 0 5px cyan, 0 0 10px cyan, 0 0 15px cyan;
    }
    100% {
        color: cyan;
        text-shadow: 0 0 10px cyan, 0 0 20px cyan, 0 0 30px cyan;
    }
}

.glow-golem {
    animation: glow-golem 1.5s infinite alternate;
    font-size: 200%;
    font-weight: bold;
    padding: 20px;
}

@keyframes glow-pandora {
    0% {
        color: black;
        text-shadow: 0 0 5px violet, 0 0 10px violet, 0 0 15px violet;
    }
    100% {
        color: violet;
        text-shadow: 0 0 10px violet, 0 0 20px violet, 0 0 30px violet;
    }
}

.glow-pandora {
    animation: glow-pandora 1.8s infinite alternate;
    font-size: 200%;
    font-weight: bold;
    padding: 20px;
}

a {
    text-decoration: none;
}

.comic-description {
    font-size: 1.1em;
    color: white;
    padding: 10px;
}
.text-center {
    text-align: center; /* Center text in this class */
}
.button-container {
    display: flex; /* Flexbox for button layout */
    flex-direction: row; /* Change to row if you want them side by side */
    justify-content: center; /* Center the buttons */
    margin-top: 20px; /* Space above the button container */
}

.button {
    display: inline-block;
    font-weight: bold; /* Makes the font thicker */
    padding: 18px 36px; /* Increased padding for a larger button */
    background-color: #ff0780; /* Button background color */
    color: #8A0000; /* White text color for contrast */
    border: 2px solid #0056b3; /* Darker blue border color */
    border-radius: 8px; /* Rounded corners */
    text-decoration: none; /* Remove underline */
    font-size: 30px; /* Increased font size for stronger visibility */
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s; /* Transition effects */
    margin: 10px; /* Space between buttons */
    max-width: 200px; /* Set a max width to prevent stretching */
    text-align: center; /* Center text within the button */
}


        .button:hover {
            background-color: cyan; /* Cyan background on hover */
            transform: translateY(-2px); /* Lift effect on hover */
            box-shadow: 0 0 10px magenta, 0 0 20px magenta; /* Glowing effect on hover */
        }

        .button.return:hover {
            color: black;
            background-color: pink; /* Lighter shade for Return button on hover */
        }


/* Responsive Styles */
@media (max-width: 600px) {
    h1 {
        font-size: 24px; /* Adjust as needed */
    }
    h2 {
        font-size: 20px; /* Adjust as needed */
    }
    p, .comic-description {
        font-size: 1em; /* Adjust as needed */
    }
    .return-home {
        font-size: 20px; /* Adjust as needed */
        padding: 10px 15px; /* Adjust padding for smaller screens */
    }
    .container {
        flex-direction: column;
        align-items: center;
    }
}

