/* Basic Styles */

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 0;
}

html, body, div, p {
    margin: 0;
    padding: 0;
    color: #020202;
    text-align: left;
    font-size: 1em;
    line-height: 1.5em;
    font-family: 'Merriweather Sans', sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

/* Breakpoint for tablets: */
@media only screen and (min-width: 600px) {
  #content {width: 100%;}
}

/* Breakpoint for desktop: */
@media only screen and (min-width: 768px) {
    #content {width: 100%;}
}

#content {
    width: 100%;
}

#header {
    padding: 1em 2em 1em 2em;
}
 
#main {
    background: #5994f3; 
    padding: 1em 2em 1em 2em;
}

#footer {
    background: #eee;
    padding: 1em 2em 1em 2em;
}

a { color: #020202; text-decoration: none; }
a:hover { color: #c4d52a; text-decoration: none; }

h1 {
    margin: 0;
    padding: 0;
    font-size: 2em;
    line-height: 2.5em;
}

p {
    margin: 1.5em 0 1.5em 0;
}