/* Main CSS */
:root {
    font-family: 'Open Sans', sans-serif;
}

/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default margin */
html,
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font: inherit;
}

/* Nav.html */

nav {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 9001;
    display: block;
    width: auto;
    background: #fff;
    margin: 0;
    padding: 10px;
    border-radius: 5px;
}

nav a {
    text-decoration: none;
}

nav a:first-child {
    padding: 0 0 0 10px;
}

nav a:link, nav a:visited, nav a:active {
    color: #424242			
}

nav a:hover {
    color: #000;
}

nav a.button {
    background: #424242;
    color: #fff;
    padding: 4px 10px 6px 10px;
    margin: 0;
    border-radius: 4px;
    display: block;
    min-width: 250px;
}

nav a.button:hover {
    background: #000;
}

nav ul {
    visibility: hidden;
    height: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

nav li {
    margin: 10px 0 5px 0;
}

.navToggle {
    font-family: "Courier New", monospace;
    font-size: 15px;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    color: #424242;
    border: 1px solid #424242;
    border-radius: 2px;
    text-align: center;
    line-height: 20px;
    cursor: pointer;
}

.navToggle:hover {
    color: #000;
    border: 1px solid #000;
}

/* /Nav.html */
