html{
    background: url("img/bg2.png") no-repeat center -80px #4D5861;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100%;
}
body{
    font-size: 100%;
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    font-weight: 300;
    line-height: 1.5;
    min-height: 100%;
    position: relative;
}
header{
    background: #FFFFFF;
    padding: 1.5em 2em;
}
header ul{
    float: right;
    list-style-type: none;
    padding-top: 30px;
}
header ul li {
    display: inline;
}
header ul li a {
    font-size: 16px;
    text-decoration: none;
    color:#3E474C;
}
header ul li a:hover {

    color:#EC1E23;
}
p{
    margin-bottom: 15px;
}
b{
    font-weight: 400;
}
a{  color:#EC1E23;
}
.logo{
    display: inline-block;
}
section{
    padding: 3%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    width: 100%;
}
section.absolute{
    position: absolute;
    bottom: 0;
}
.content{
    padding: 1.5rem 2rem 0.5rem 2rem;
    background: rgba(255,254,255,0.8);

}
h1{
    font-size: 24px;
    margin-bottom: 1rem;
}
h2{
    font-size: 20px;
    margin-bottom: 0.5rem;
}
h3{
    font-size: 18px;
    margin-bottom: 0.4rem;
}
.bullets li{
    list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: 10px;
}
@media only screen and (max-width: 600px) {
    html{
        background-size: 150%;
        background-position: center 50px;
    }
    body{
        font-size: 14px;
    }
    header{
        padding: 1em 1.5em;
    }
    .logo{
        //display: block;
    }
    .logo img{
        width: 100px;
        display: block;
        margin: auto;
    }
    header ul{
        //float: none;
        //text-align: center;
        padding-top: 12px;
    }
    header ul li a{
        font-size: 13px;
    }
    section.absolute{
        position: static;
        padding-top: 40%;
    }
}