﻿body {
    font: 15px/1.5 Arial, Arial, Helvetica, sans-serif;
    padding:0;
    margin:0;
    background-color:lightgray;
}

/* Global*/
.container{
    width:80%;
    margin:auto;
    overflow:hidden;
}

/* Header */
header {
    background-color: black;
    color: white;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: white 3px solid;
}

header a{
    color:white;
    text-decoration:none;
    text-transform:uppercase;
    font-size:16px;
}

header h1{
    color:cadetblue;
}

header ul{
    padding:0;
    margin:0;
}

header li{
    float:left;
    display:inline;
    padding: 0 20px 0 20px;
}

header #authorName{
    float:left;
}

header #authorName h1{
    margin:0;
}

header nav{
    float:right;
    margin-top:10px;
}

header .highlight, header .current a{
    color:white;
    font-weight:bold;
}

header a:hover {
    color:cadetblue;
    font-weight: bold;
}


/* Showcase */
#showcase {
    background: url('../images/banner.jpg') no-repeat;
    background-size: 100%;
    border-bottom: white 4px solid;
    min-height: 350px;
}

/* Boxes */
#boxes{
    margin-top:20px;
    text-align:center;
}

#boxes .box{
    float:left;
    text-align:center;
    width:30%;
    padding:10px;
    color:black;
}

#boxes .box img{
    width:80%;
}

/* Footer */
footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color:black;
    color:white;
}