/* 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 STYLE BELOW ====== */

header{ 
	background-color: #c9342f;
	color: white; 
	text-align: center;
	padding-top: 40px;
	padding-bottom: 40px;
	border-bottom: black solid 0.1em;

}

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

body { 
	font-family: "Roboto", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
	font-variation-settings: 100;
}

main {
    margin: 0 5em;
}

h1{ 
    font-size: 2.5em;
	font-weight: 400;
	
}

h2{
    font-size: 2.4em;
	font-weight: 400;
}

h3{
    font-size: 1.8em;
	font-weight: 370;
}

h1,h2,h3 {
    margin-top: 1.5em;
}

p{
    line-height: 1.45;
}

p+p{
    margin-top: 1.25em;
}

h1+p { 
	margin-top: .70rem;
}

h2+p { 
	margin-top: 1.2rem;
}

h3+p { 
	margin-top: 1.25rem;
}

main p:last-of-type{ 
	font-style: italic;
	padding-bottom: 30px;
}

footer {
	padding-top: 20px;
	padding-bottom: 20px;
	align-content: center;
	border-top: .1em solid #9d201c;
	text-align: center;

}

a { 
	color: rgb(14, 114, 255);
	text-decoration: underline rgb(178, 9, 9);
}












