body{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    padding: 0;
    margin: 0;
    background-color: #f4f4f4;
}

/* Global */
.container{
    width: 80%;
    margin: auto;
    overflow: hidden;
}

ul{
    margin: 0;
    padding: 0;
}

/* Header */
header{
    background-color: #313538;
    color: #ffffff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #38614b 5px solid;
}

header a{
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}


header li{
    float: left;
    display: inline;
    padding: 0 20px 0 20px;
}

header #branding{
    float: left;
}

header #branding h1{
    margin: 0;
}

header nav{
    float: right;
    margin-top: 10px;
}

header .highlight, header .current a{
    text-shadow: 3px 3px #1f1e1e;
    color: #91b187;
    font-weight: bold;
}

header a:hover{
    color: #cccccc;
    font-weight: bold;
}

/* Showcase */
#showcase{
    min-height: 400px;
    background:url('../img/showcase-reduced.jpg');
    background-size: cover;
    background-color: #38614b;
    background-position: center;
    text-align: center;
    color: #ffffff;
    border-bottom: #38614b 5px solid;
}

#showcase h1{
    margin-top: 100px;
    font-size: 55px;
    margin-bottom: 10px;
}

#showcase p{
    font-size: 20px;
}

/* Contact */
#contact{
    padding: 15px;
    color: #ffffff;
    background: #313538;
}

#contact h1{
    margin-top: 5px;
    text-align: center;
}

#contact a{
    text-align:center;display:block;
    color: #ffffff;
}

#contact input[type="email"]{
    padding: 4px;
    height: 25px;
    width: 250px;
}

/* Boxes */
#boxes{
    margin-top: 20px;
}

#boxes .box{
    display: inline-block;
    text-align: center;
    margin-left: 2.5%;
    width: 30%;
}

#boxes .box img{
    width: 90px;
    height: 90px;
}

footer{
    margin-top: 10px;
    box-shadow: 0 50vh 0 50vh #313538;
    padding: 30px;
    color: #ffffff;
    background: #313538;
    text-align: center;
}

/* Media Queries */
@media(max-width: 768px){
    header #branding,
    header nav,
    header nav li,
    #contact h1,
    #contact form,
    #boxes .box,
    article#main-col,
    aside#sidebar{
        float: none;
        text-align: center;
        width: 100%;
    }

    header{
        padding-bottom: 20px;
    }

    #showcase h1{
        margin-top: 40px;
    }

    #contact button{
        display: block;
        width: 100%;
    }

    #contact form input[type="email"]{
        width: 100%;
        margin-bottom: 5px;
    }
}
