/* Global styles */
body {
    background-color: #0E0E0E; /* Black background */
    color: #FFFBE9; /* Off-white text */
    font-family: Arial, sans-serif; /* Default font */
}

header, footer {
    background-color: #1D1D1D; /* Slightly lighter black for header and footer */
    color: #FFFBE9;
    padding: 10px 0;
    text-align: center;
    font-family: 'Oswald Light', sans-serif; /* Oswald font for headers */
}

h1, h2, p{
    text-align: center; /* Centers text and inline elements */
    font-family: Arial, sans-serif;

}

a {
    color: #FFEBE9; /* Light primary color for links */
    text-align: center; /* Centers text and inline elements */
    font-family: Arial, sans-serif;
    text-decoration: none;
}

a:hover {
    color: #9B1D1D; /* Tertiary color when hovered */
}

nav ul {
    padding: 0;
    font-family: Arial, sans-serif;
    list-style-type: none; /* Remove default list bullets */
    margin: 0; /* Remove default margins */
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

section {
    padding: 20px;
    border-top: 1px solid #333; /* Subtle top border for the section */
    font-family: Arial, sans-serif;
}

#main-content h2 {
    color: #FFFBE9;
}

#twine-story {
    background-color: #333; /* Darker area for the Twine game to stand out */
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    font-family: Arial, sans-serif;
}


/* Additional Twine CSS */
@keyframes appear {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
