@import url('https://fonts.googleapis.com/css2?family=Comic+Neue&family=Noto+Sans&family=Noto+Sans+Deseret&display=swap');

/* Nav bar */

header nav {
    margin: 2em;
}

header nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    padding: 1em;
    margin: 0 0.5em;
    text-decoration: none;
    color: black;
    background-color: #00e3ff;
    border-radius: 10px;
}

nav ul li a:hover {
    color: #00e3ff;
    background-color: #222222;
}

header h1 {
    text-align: center;
    background-color: #ffd382;
    color: black;
    font-weight: bolder;
    border-radius: 10px;
}

body {
    margin: 2em auto;
    max-width: 39.5em;
    background-color: black;
    color: white;
    font-family: 'Noto Sans', sans-serif;
    font-size: 12pt;
}

h1, h2, h3, h4, h5, h6 {
    color: #ffd382;
    font-family: 'Comic Neue', cursive;
}

h1 {
    font-size: 2em;
}

h2 {
    font-size: 1.6em;
}

h3 {
    font-size: 1.4em;
}

h4, h5, h6 {
    font-size: 1.1em;
}

h5, h6 {
    font-style: italic;
}

.deseret {
    font-family: 'Noto Sans Deseret', sans-serif;
}

img {
    width: 100%;
}

table {
    margin: 0 auto;
}

td, th {
    border-color: white;
    border: 2px;
    padding: .5em;
    border-style: solid;
}