/* Global */
body{
    font: 15px/1.5 Arial, Helvetica, sans-serif;
    padding:0;
    margin:0;
    background-color:#354e7a;
}

ul{
    margin:0;
    padding:0;
}

.container{
    width:80%;
    margin:auto;
    overflow:hidden;
}

/* Header */
header{
    background:#252b39;
    color:#ffffff;
    padding-top:30px;
    min-height:70px;
    text-align:center;
    border-bottom:#354e7a 5px solid;
}

header #branding {
    display:inline-block;
}

header #branding h1{
    margin:0;
    font-weight:bold;
    color:#fffff
}

/* Showcase */
#showcase{
    color:#ffffff;
    text-align:center;
}
#showcase p{
    font-size:20px;
    text-align:center;
    margin-top:10px;
    margin-bottom:10px;
}
#showcase a{
    color:#ffffff;
    font-weight:bold;
    text-decoration:none;
}
#showcase a:hover {
    color:#E2201C;
    font-weight:bold;
}
/* Banners */
#banner {
    background:#252b39;

}
#banner h2{
    color:#ffffff;
    font-weight:bold;
    text-align:center;
    margin-top:5px;
    margin-bottom:5px;
}


/* Links */\
.linkcontainer{
    text-align:center;
    display:inline-block;
}
#links {
    background:#354e7a;
    margin-top:10px;
    text-align:center;
}
#links .link{
    display:inline-block;
    padding: 15px;
}
#links a{
    color:#ffffff;
    text-decoration:none;
    font-weight:bold;
    font-size:20px;
}
#links a:hover {
    color:#E2201C;
    font-weight:bold;
}

/* Boxes */
.boxcontainer{
    text-align:center;
    display:inline-block;

}
#boxes{
    margin-top:20px;
    margin-bottom:20px;
    background:#354e7a;
    color:#ffffff;
    text-align:center;
}

#boxes .boxcontainer:hover > *:hover { 
    transform: scale(1.06);
}
#boxes .box{
    background:#a5abbd;
    border:#354e7a 5px solid;
    display:inline-block;
    padding: 15px;
    transition:.15s;
}

#boxes .box img{
    width:130px;
    border:#8b0000 5px solid;
}

/* Blog [UNDER CONSTRUCTION]*/
#blog{
    color:#ffffff;

    padding:.9%;
}

#blog .post{
    border-radius:25px;
    background:#a5abbd;
}
#blog .posttitle{
    background:#252b39;
    text-align:center;
}

#blog .postbody{
    font-family:Consolas, "times new roman";
    text-align:left;
    margin-left:2%;
    margin-bottom:15px;
    color:#690000
}