body {
    padding: 0;
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
    color: white;
    background-size: 100% 100%;
    background-attachment: fixed;
}
a {
    color: white;
    text-decoration: none;
}
#menuBar {
    position: fixed;
    top: 0;
    width: 100%;
    font-family: 'Teko', sans-serif;
}
.menuItem {
    width: 20%;
    text-align: center;
    float: left;
    padding-top: 1em;
    padding-bottom: 1em;
    background: rgba(50, 50, 50, 0.7);
    transition: background 1s;
}
.menuItem:hover {
    background: -webkit-linear-gradient(rgba(150, 150, 150, 0.7), rgba(150, 150, 150, 0.9));
    cursor: pointer;
}
.menuItem h2 {
    background: -webkit-linear-gradient(whitesmoke, silver);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#compressedMenu {
    display: none;
}

@media (max-width: 1000px) {
    .menuItem {
        width: 100vw;
        float: left;
        display: none;
    }
    #compressedMenu {
        display: block;
        float: right;
        padding-right: 1.2em;
        cursor: pointer;
        font-size: 3em;
    }
}

/* Generic page template */
#main {
    padding-top: 7em;
    color: black;
    padding-bottom: 4em;
}
#main #title {
    font-size: 4em;
    text-align: center;
}
#main p {
    padding-left: 10vw;
    padding-right: 10vw;
    font-size: 1.2em;
}
#main h1 {
    font-size: 2.5em;
    text-align: center;
}