/* 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;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	-ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
	}
}

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

/* Post reset */

::-moz-selection {
	background: #dddddd;
}

::selection {
	background: #dddddd;
}

body {
	color: black;
	font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
	font-weight: bold;
	font-size: 12px;
	word-break: break-word;
	width: 100%;
	padding-top: 2vw;
}

main {
	width: 100%;
}

p {
	line-height: 1.1;
	padding: 0.65em;
	padding-top: 0.45em;
	padding-bottom: 4em;
	display: block;
	width: 100%;
	text-align: center;
 -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
     -ms-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
         transform: translate(-50%, -50%);
	position: fixed;
	top: 50vh;
	left: 50vw;
	z-index: 99;
}

a,
a:visited {
	color: black;
	text-decoration: none;
}

a:hover,
a:focus,
a:active {
	color: #888888;
	text-decoration: none;
	outline: 0;
}

a.button {
	font-size: 2.5em;
	font-weight: normal;
	color: #ffffff;
	background-color: #000000;
	padding: 0.35em 3em 0.5em 3em;
	border-radius: 4em;
	display: inline-block;
	margin-bottom: 4vw;
}

a.button:hover {
	background-color: #222222;
}

.flex {
	display: flex;
	justify-content: center;
	width: 100%;
	padding-left: 2vw;
	padding-right: 2vw;
}

.row {
	padding-bottom: 3vw;
	text-align: center;
}

.vertical {
	width: 45.5%;
	padding-right: 3.25vw;
}

.square {
	width: 54.5%;
}

.narrow {
	width: 50%;
}

img {
	width: 100%;
}

@media screen and (max-width: 500px) {

body {
	padding-top: 0;
}

p {
	position: static;
	padding-bottom: 2vw;
	text-align: left;
 -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
     -ms-transform: translate(0, 0);
      -o-transform: translate(0, 0);
         transform: translate(0, 0);
}

a.button {
	font-size: 1.5em;
	padding: 0.35em 3em 0.5em 3em;
}

}

