* {
	margin: 0;
	padding: 0;
}

/* This selector NEEDS to be html, not body or * */
html {
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    color: white;
    text-align: center;   
}

.club {
    display: none;
}

ul {
    list-style-type: none;
}

header > nav {
    display: block;
    width: 100%;
    background-color: lightgray;
}

header > nav > ul {
    display: table-row;
    list-style: none;
    padding-right: 2%;
    margin: 0 auto;
}

header > nav > ul > li {
    display: table-cell;
    padding: 10px 20px;
    vertical-align: middle;
}

.superscript {
    font-size: 0.9rem;
    vertical-align: top;
}

a:link, a:visited, a:active {
    color: white;
    text-decoration: none;
}

a:hover {
    text-decoration: underline; 
}

section {
    height: 25em;
    background-color: #00A0B1;
    padding-left: 0.5em;
    padding-right: 0.5em;
}

section:nth-of-type(even) {
    background-color: #FFF;
    color: #00A0B1;
}

/* Sections */
#about {
    
}

#whoarewe, #whatwedo, #somethingelse {
    text-align: center;
    width: 33%;
    float: left;
}

#projects {
    
}

h2 {
    font-size: 4.5em;   
}

h3 {
    font-size: 2.5em;
}

footer {
    color: black;   
}

@media (max-width: 700px) {
    #whoarewe, #whatwedo, #somethingelse {
        width: 100%;
        padding-top: 1em;
    }
    
    section {
        height: 35em;
    }
}

@media (max-width: 525px) {
    img {
        display: none;
    }
    
    .club {
        display: block;
        text-align: center;
        color: #00A0B1;
        font-size: 3em;
        padding-top: 1em;
        padding-bottom: 1em;
    }
    
   header > nav > ul {
        display: block;
        list-style: none;
        padding-right: 2%;
        margin: 0 auto;
   }

    header > nav > ul > li {
        display: block;
        padding: 10px 20px;
        width: 100%;
        vertical-align: middle;
    }
}
