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

/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
html{height:100%;}
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,400i,500,500i,800,800i');
body{height:100%;min-height: 100%;font-family: 'Montserrat', sans-serif;
    display: grid;
    grid-template-columns:1fr;
    grid-template-areas: "header"
                        "content"
                        "footer";
    grid-template-rows: 4vh 1fr 4vh;
color: #666;
background: #fff;
margin: 0 auto;
text-align: center;}
header{
    grid-area: header;
    padding: 1rem;
}
.cent{
    margin: auto;
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    }
.content{
    grid-area: content;
    padding: 1.66rem 0;
}
footer{
    grid-area: footer;
    padding: .66rem;
}
footer p{align-self: center;
  justify-self: center;}
h1{font-size:2.25rem;font-weight: 500;margin: 1rem;}
h2{font-size:1.75rem;font-weight: 400; font-style: italic;margin: 1.5rem;}
h3{font-size:1.32rem;font-weight: bold; font-style: italic;margin: 1.5rem;}
a{color:#000;text-decoration: none;}a:hover{text-decoration: underline;}
img{margin-bottom: 1rem;max-width: 100%;height: auto;}
p{line-height: 3rem;font-size: 1.22rem;}
strong{font-weight: bold;}
.button{display:inline-block;color: #fff;background-color: #000;font-size: 1.5rem;border:4px solid #000;
    margin:1rem;
    height: 3rem;
		line-height: 2.66rem;
		padding:0 2rem;
    text-transform: uppercase;
    text-decoration: none;
white-space: nowrap;
}
.button:hover{color:#000;background-color: #fff;text-decoration: none;}