/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
@font-face {
    font-family: 'source_serif_proregular';
    src: url('sourceserifpro-regular.woff2') format('woff2'),
         url('sourceserifpro-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 'source_sans_proregular';
    src: url('sourcesanspro-regular.woff2') format('woff2'),
         url('sourcesanspro-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
    --light-bg-color: #ffffff;
    --light-footer-bg-color: #f9f9f9;
    --light-text-color: #000000;
    --light-border: #cdcdcd;
}


html {
    background-color: var(--light-footer-bg-color);
    color: var(--light-text-color);
    font-family: 'source_sans_proregular', sans-serif;
}

h1,h2,h3 {
    font-family: 'source_serif_proregular', serif;
}


h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}
h3 {
    font-size: 1.5rem;
}
p {
    font-size: 1.2rem;
}

.title {
    background-color: var(--light-bg-color);
    padding: 0.5rem;
}

.hero {
    background-color: var(--light-bg-color);
    font-size: 4rem;
    padding: 2rem 0rem;
    text-align: center;
}

nav {
    background-color: var(--light-footer-bg-color);
    border-bottom: 1px solid var(--light-border);
    border-top: 1px solid var(--light-border);
    padding: 1rem;
}

nav > a {
    border: 1px solid rgba(0,0,0,0);
    border-radius: .2rem;
    color: var(--light-text-color);
    padding: .5rem;
    text-decoration: none;
}

nav > a:hover {
    border: 1px solid var(--light-border);
}

footer  {
    background-color: var(--light-footer-bg-color);
    border-top: 1px solid var(--light-border);
    padding: 2rem 0rem; 
    text-align: center;
}