body{
    font: 15px/1.5 Arial Helvetica, sans-serif;
    padding: 0;
    margin: 0;
    background-color: white;
    font-family: 'Lato', sans-serif;
}

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

h1{
    font-family: 'Ubuntu', sans-serif;
    color: #fbfff1;
}

h3{
    font-family: 'Ubuntu', sans-serif;
    color: #090c9b; 
}

/*Header*/
header{
    background: #3c3744;
    color: #ffffff;
    min-height: 30px;
    border-bottom: 3px solid #090c9b;
}

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

header ul{
    float: right;/*Use "float" here for "display" to work in "li"*/
    margin-top: 40px;
    padding: 5px;
}

header li{
    display: inline;/*"display" and "float" don't work in same element. Use "float" in "ul"*/
    padding: 10px;
}

header #branding{
    float: left;
    margin: 10px 0 10px 0;
}

header .highlight, header .current a{
    color: #e8491d;
    font-weight: bold;
}

header a:hover{
    color: #e0e1e2;
    font-weight: bold;
    transition: 0.3s;
}

/*Main*/

#main{
    padding: 5px;
    margin-top: 10px;
    /*border: 2px solid green;*/
}

#main h1{
    color: #090c9b;
    margin: 20px 0 20px 0;
}

#main .main-col{
    float: left;
    margin-top: 10px;
    padding: 5px 5px 5px 5px;
    width: 60%;
    /*border: 1px solid red;*/
}

#main .box{
    padding: 10px;
    height: 200px;
    margin-bottom: 20px;
    background-color:  #f0f3f5;
    border-radius: 5px;
    box-shadow: 1rem 1rem 1rem -1rem #cab5c0;
    /*border: 2px solid black;*/
}

#main .sidebar{
    float: right;
    height: auto;
    margin-top: 90px;
    padding: 10px;
    width: 30%;
    background-color: #e0e1e2;
    border-radius: 5px;
    /*border: 2px solid blue;*/
}

footer{
    background-color: #3c3744;
    min-height: 70px;
    margin-top: 20px;
    text-align: center;
    color: #e0e1e2;
    border-top: 3px solid #090c9b;
}

footer p{
    padding: 5px 5px 5px 5px;
}
