* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #404040;
}

nav {
    width: 100vw;
    height: 60px;
    background-color: #282828;
}

nav p {
    color: white;
    font-size: 20px;
    font-family: "Quicksand", sans-serif;
    font-weight: 600;
    line-height: 55px;
    padding: 1px 20px;
}

nav p a {
    color: white;
}

#geode-logo {
    float: left;
    margin-left: 5px;
    height: 60px;
}

#author {
    float: right;
}

nav ul {
    float: left;
}

nav ul li {
    float: left;
    list-style: none;
    position: relative;
}

nav ul li a {
    display: block;
    color: white;
    text-decoration: none;
    font-family: "Quicksand", sans-serif;
    font-weight: 600;
    font-size: 20px;
    padding: 16px 14px;
}

nav ul li ul {
    display: none;
    position: absolute;
    background-color: #1d1d1d;
    padding: 10px;
    border-radius: 0px 0px 5px 5px;
}

nav ul li:hover ul {
    display: block;
}

nav ul li ul li a {
    width: 180px;
}

nav ul li ul li a {
    padding: 16px 14px;
}

nav ul li ul li a:hover {
    color: #ccc;
}

.centered {
    text-align: center;
}

footer {
    width: 100vw;
    bottom: 0;
    position: fixed;
    color: white;
    margin-bottom: 10px;
}

footer a {
    color: white;
}

h1, p, label {
    font-family: Arial, sans-serif;
}
