#body {
    width: 90%;
    margin: auto;
    background-color: #ffffff;
}

#navbar1 {
    background-color: #000000;
    clear: both;
    text-align: center;
    padding: 2px;
}

#navbar1 li {
    display: inline-block;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
}

#navbar1 a {
    color: white;
    font-size: 20px;
    text-decoration: none;
    font-family: 'Inconsolata', monospace;
}

#navbar2 {
    background-color: #000000;
    clear: both;
    text-align: center;
    padding: 2px;
}

#navbar2 li {
    display: inline-block;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
}

#navbar2 a {
    color: white;
    font-size: 15px;
    text-decoration: none;
    font-family: 'Inconsolata', monospace;
}

#left {
    width: 73%;
    float: left;
}

#right {
    width: 26%;
    float: right;
    border-left: 1px solid black;
    border-bottom: 1px solid black;
}

#sidebar {
    background-color: #ffffff;
    border: 1px solid black;
    float: left;
    width: 17.87063197026022%;
    position: fixed;
    bottom: 10px;
    left: 7.25%;
}

#sidebarlinks a {
    color: blue;
    clear: both;
    font-weight: bold;
}

#sidebar h3 {
    padding-left: 10px;
    padding-top: 10px;
}

#clock {
    border-bottom: 1px solid black;
    padding-top: 7px;
    padding-bottom: 7px;
}

#clocktext {
    font-family: 'Open Sans', sans-serif;
}

#mainbody {
    width: 76.923076923%;
    float: right;
    background-color: #ffffff;
    border: 1px solid black;
    padding-bottom: 1%;
}

#boldtext {
    font-weight: bold;
}

#timelineh2 {
    font-size: 12px;
}

#itempic {
    width: 45%;
    float: right;
    border-left: 1px solid black;
    border-bottom: 1px solid black;
}

h1 {
    font-family: 'Open Sans', sans-serif;
    font-size: 60px;
    padding-left: 50px;
}

h2 {
    font-family: "Trebuchet MS", Helvetica, sans-serif;
    font-size: 50px;
}

h3 {
    font-family: 'Comfortaa', cursive;
    padding: 10px;
    padding-left: 20px;
    font-size: 25px;
}

p {
    font-family: 'Space Mono', monospace;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 16px;
}

a {
    text-decoration: none;
}

a:visited {
    color: blue;
}


/* Code grabbed from https://codepen.io/shshaw/pen/gsFch/ */

.navbar2 {
    position: relative;
}

.n2sub-menu {
    visibility: hidden;
    /* hides sub-menu */
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    transform: translateY(-2em);
    transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

.navbar2:hover .n2sub-menu {
    visibility: visible;
    /* shows sub-menu */
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    transition-delay: 0s, 0s, 0.3s;
    /* this removes the transition delay so the menu will be visible while the other styles transition */
}


/* presentational */

body {
    padding: 2%;
    font: 18px/1.4 sans-serif;
}

nav a {
    color: #A9A9A9;
    display: block;
    padding: 0.5em 1em;
    text-decoration: none;
}

nav a:hover {
    color: #2D2D2D;
}

nav ul,
nav ul li {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav>ul {
    background: #2D2D2D;
    text-align: center;
}

nav>ul>li {
    display: inline-block;
    border-left: solid 1px #000000;
}

.n2sub-menu {
    background: #2D2D2D;
}
