/* Import Fira Code font */
@import url('https://fonts.googleapis.com/css2?family=Fira+Code&display=swap');

body {
    font-family: 'Fira Code', monospace;
    background: #220000; /* Slightly lighter background */
    color: #ddd; /* Slightly brighter text for better contrast */
}

/* Hyperlink styles for better visibility */
a {
    color: #66ccff; /* Bright blue for readability */
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #ffcc66; /* Light orange on hover */
    text-decoration: underline;
}

main {
    max-width: 800px;
    margin: auto;
}

/* Center images in Markdown */
img {
    display: block;
    margin: auto;
    max-width: 120%; /* Make images a bit larger */
    transition: transform 0.3s ease-in-out;
}

/* Navigation styling */
header h1 {
    text-align: center;
}

footer, .taglist {
    text-align: center;
    clear: both;
}

#prevart {
    float: left;
    text-align: left;
}

#nextart {
    float: right;
    text-align: right;
}

#nextart, #prevart {
    max-width: 33%;
}
