/* CSS RESET */

    /* 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;
}


/* STYLESHEET */



/* Structure */

#wrap{
    width: 100%;
    margin: 0;
    padding: 0;
}

.content{
    max-width: 800px;
    margin: 0 auto;
    padding: 2em;
}

header{
    width: 100%;
    background-color: crimson;
}

main{
    max-width: 100%;
    margin: 0 auto;
}

footer{
    width: 100%;
    background-color: crimson;
    color: #ffffff;
}

/* Typography */

h1,h2,h3,h4{
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    line-height: 150%;
  }

p,ol,ul,ol li,ul li,a{
    font-family: "Red Hat Text", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    line-height: 150%;
  }

p{
    margin: 0.5em 0;
}

strong{
    font-weight: 700;
}

a,a:active,a:visited {
    text-decoration: none;
    color: salmon;
    border-bottom: 1px solid; 
}

a:hover{
    color: crimson;
}

img.logo{
    text-align: center;
    margin: 2em auto 0.5em auto;
    width: 50%;
    display: block;
}

h1{
    font-size: 3em;
    color: #ffffff;
    text-align: center;
}

h2{
    font-size: 2em;
}

h3{
    font-size: 1.8em;
    margin: 2em 0 0.5em 0;
}

h4{
    font-size: 1.4em;
    margin: 1.5em 0 0.5em 0;
}

.highlight{
    color: crimson;
}

.important{
    display: block;
    padding: 1em;
    background-color: rgb(241, 209, 205);
    border-radius: 1em;
}

.important h3{
    margin-top:0;
}

a:link .button{
    border-bottom: none;
}

.button{
    display: block;
    text-align:center;
    background-color: crimson;
    padding: 1em;
    border: none;
    border-radius: 2em;
    font-size: 1.5em;
    font-weight: 700;
    color:#ffffff;
    margin: 1em auto;
    transition-duration: 0.4s;
    cursor: pointer;
}

.button:hover{
    background-color: salmon;

}

ul{
    list-style: square;
    padding: 1em;;
    margin-left:1em;
}

ul li{
    font-weight: 700;
}

footer a{
    color: salmon;
    border-bottom: 0;
}

footer a:hover{
    color: #ffffff;
    border-bottom: 1px solid;
}

.footerBold{
    text-align: center;
    font-weight: 700;
}
/* Queries */