html,
body {
    font-family: "Raleway", sans-serif;
    padding: 3em 2em;
    font-size: 18px;
    background: #222;
    color: #aaa;
}

h1,
h2 {
    font-weight: 200;
    margin: 0.4em 0;
}

h1 {
    font-size: 3.5em;
}

h2 {
    color: #888;
    font-size: 2em;
}

a,
.link {
    text-decoration: none;
    color: #b7b7b7;
}

/** Tools Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: max-content;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 23px;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/** Footer */
.footer {
    position: absolute;
    top: 95vh;
    transform: translateY(-100%);
    font-size: 1.5em;
}