/* 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;
}

/* ================== My STYLES =============================== */
/* ================== My STYLES =============================== */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Segoe UI', 'Helvetica', sans-serif;
    font-size: 1.06em;
    font-weight: 300;
    line-height: 1.5;
    background-color: #f6f6f6;
    color: #252424;


}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0 40px;
}

main p {
    margin-bottom: 16px;
}

main p:last-child {
    font-style: italic;
    margin: 24px 0 5px;
}

h1,
h2,
h3,
header p:first-of-type {
    font-weight: 400;
    font-family: 'Roboto Condensed', 'Segoe UI', 'Helvetica', sans-serif;

}

/* Header - Red banner */
header {
    background-color: #d54141;
    color: #fffffff7;
    text-align: center;
    padding: 50px 0;
    border-bottom: 3px solid #5d2b0582;
}

header p:first-of-type {
    font-size: 3.3em;
    text-transform: uppercase;
}

header p:last-of-type {
    font-size: 1.5em;
    font-weight: 200;

}


h1 {
    font-size: 2.45em;
}

h2 {
    font-size: 1.96em;
    margin-top: 40px;
}

h3 {
    font-size: 1.45em;
    margin-top: 24px;
}

h3+p {
    margin-top: 5px;
}


a {
    color: #5b94c8;
    text-decoration-color: #bb331e;
    text-underline-offset: 3.2px;
}

footer {
    padding: 24px 0;
    text-align: center;
    border-top: 3px solid #5d2b059d;

}