* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
   
}

body {
    background-color: #d9dcd6;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  
}
/*Added padding and color to header*/
header {
    padding: 20px;
    background-color: #2a607c;
    color: #ffffff;
}
/*Added css to the h1*/

h1{
    display: inline-block;
    font-size: 48px;
}
h1 .seo {
    color: #d9dcd6;
}

/*Added CSS for nav bar and the ul, li tags*/

nav{
    padding-top: 15px;
    margin-right: 20px;
    float: right;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 20px;
}
/*To align the text to right*/

ul
{
    text-align: right;
}
li {
    list-style-type: none;
    display: inline;
    margin-left: 25px;
}
a {
    color: #ffffff;
    text-decoration: none;
}

p {
    font-size: 16px;
}

/*Image is added i HTML, defined the CSS for image*/

.hero
{
    height: 800px;
    width: 100%;
    margin-bottom: 25px;
    
}
.float-left {
    float: left;
    margin-right: 25px;
    max-height: 200px;
}

.float-right {
    float: right;
    margin-left: 25px;
    max-height: 200px;
}
/*sections with this class are given CSS properties*/
.content {
    width: 75%;
    display: inline-block;
    margin-left: 20px;
    margin-top: 10px;
}
/*aside with this class are given CSS properties*/
.benefits {
    margin-right: 20px;
    padding: 20px;
    clear: both;
    float: right;
    width: 20%;
    height: 100%;
    background-color: #2589bd;
}

aside{
    margin-bottom: 32px;
    color: #ffffff;
    margin-top: 10px;;
}

 h3 {
    margin-bottom: 10px;
    text-align: center;
}
/*all the img tags within aside are given CSS properties*/
aside > img {
    display: block;
    margin: 10px auto;
    max-width: 150px;
}
/*all the section tags within aside are given CSS properties*/

.content >section{
    margin-bottom: 20px;
    padding: 50px;
    height: 300px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: #0072bb;
    color: #ffffff;
    
}
/*all the h2 tags within content section are given CSS properties*/

section > h2 {
    margin-bottom: 20px;
    font-size: 36px;
}
/*CSS properties for footer*/
footer {
    padding: 30px;
    clear: both;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-align: center;
    font-size: 20px;
}

