body {
    font-family: Verdana, sans-serif;
    background-color: rgb(248, 240, 240);
}
h1,h2,h3,h4,h5,h6 {
    font-family: Georgia, serif;
    color: #8807c9;
}
h1 {
    text-align: center;
}
h2 {
    border-top: solid 2px #09f3ff;
    padding-top: 1em;
}
em {
    font-weight: bold;
    font-size: 120%;
}
blockquote {
    background: #F0ECEC;
    margin: 1em;
    font-style: italic;
}
.firstLetter {
    font-size: 300%;
    font-family: Georgia, serif;
    color: #4E0102;
}
.firstWord {
    text-transform: uppercase;
}
.firstStory {
    color: #17037A;
}
/* navigation styles */
#navigation {
    font-family: Georgia, serif; font-size: 100%;
    border-top: solid 2px #09f3ff; 
    border-bottom: solid 2px #09f3ff;
    position: relative;
}
li {
    display: inline;
    list-style-type: none;
}
a:link, a:visited, a:active {
    color:#022560; text-decoration: none; font-weight: bold;
}
a:hover {
    color:#09f3ff; text-decoration: underline; font-weight: bold;
}   
.wrapper { 
    width: 80%;
    margin: 5px auto;
    padding:5px 30px;
    border: solid 1px grey;
    border-collapse:collapse;
    color:#022560;
}

/* Dark mode styles */
.dark-mode {
    background-color: #121212;
    color: #e0e0e0;
}

/* Ensure all text elements change to white in dark mode */
.dark-mode h1, .dark-mode h2, .dark-mode h3, .dark-mode p, .dark-mode .firstLetter, .dark-mode firstWord, .dark-mode firstStory, .dark-mode navigation, .dark-mode a {
    color: white;
}