/* the styles for the elements */
body {
	font-family: Arial, Helvetica, sans-serif;
}
a {
    font-weight: bold;
}
h1 { font-size: 160%; }

/* the styles for the header */
header { 
    & img {
        float: left; 
        margin-right: 1em;
    }
    & h2 {
        font-size: 250%;
        font-style: italic;
        color: steelblue;
    }
    & h3 {
        font-size: 150%;
    }
}

/* the styles for the main element  */
main {
    clear: left;
}

/* the styles for the section */
section {
    & h3 {
        color: maroon;
    }
    & a:link, a:visited { 
        color: maroon;
    }
    & a:hover, a:focus {
        color: steelblue;
    }
}

/* the styles for the sidebar */
aside {
    & h2 {
        color: maroon;
    }
    & ul {
        line-height: 1.5;
    }
    & a:link, a:visited { 
        color: steelblue
    }
    & a:hover, a:focus {
        color: maroon;
    }
}


/* the styles for the footer */
footer {
    & p {
        text-align: center;
        font-size: 85%;
    }
}