:root {
    /* Light Mode */
    --background: #faebd7;
    --text: #000000;
    --header: #a0522d;
    --headertext: #000000;

    /* Dark Mode */
    --background: #003566;
    --text: #ffffff;
    --header: #ffc300;
    --headertext: #000000;
}

* {
    margin: 0;
    font-family: Arial, sans-serif, 'Times New Roman';
}

body {
    height: 100vh;
    width: 96vw;
    margin-left: 2vw;
    margin-right: 2vw;
    font-size: xx-large;
    color: var(--text);
    background-color: var(--background);
}

h1 {
    color: var(--headertext);
}

a {
    color: var(--text);
}

img {
    width: 45vw;
}

ul {
    padding-left: 4em;
    list-style-type: square;
}

ol {
    padding-left: 4em;
}

.homediv {
    text-align: center;
    background-color: var(--header);
    margin-left: -2vw;
    margin-right: -2vw;
}

.homebutton {
    position: fixed;
    margin: 0;
    width: 2em;
    height: 2em;
    right: .1em;
    top: .1em;
    cursor: pointer;
}