/*--------------------------------------------------------------------------------------------- */
/*	0. CSS Reset
/* --------------------------------------------------------------------------------------------- */


html, body {
	border: none;
	height: 100%;
	margin: 0;
	min-height: 100%;
	padding: 0;
}

h1, h2, h3, h4, h5, h6, p, blockquote, address, big, cite, code, em, font, img, small, strike, sub, sup, li, ol, ul, fieldset, form, label, legend, button, table, caption, tr, th, td {
	border: none;
	font-size: 100%;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	margin: 0;
	padding: 0;
}

blockquote:before,
blockquote:after {
	content: "";
}

a {
	outline: none;
}


/* --------------------------------------------------------------------------------------------- */
/*	1. Document Setup
/* --------------------------------------------------------------------------------------------- */


html {
	font-size: 62.5%; /* 1rem = 10px */
}

body {
	background: #F1F2F3;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
	box-sizing: border-box;
	color: #19232D;
	font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, sans-serif;
	font-size: 1.6rem;
}

*,
*:before,
*:after {
		-webkit-box-sizing: inherit;
		-moz-box-sizing: inherit;
	box-sizing: inherit;
	font-family: inherit;
	-webkit-font-smoothing: antialiased;
	word-break: break-word;
}

::selection {
	background: #111;
	color: #fff;
}


/* Clearing ---------------------------------- */


.group:after,
.entry-content:after {
	clear: both;
	content: "";
	display: block;
}


/* Base Transitions ------------------------------- */


a {
	transition: all .15s linear;
}


/* Screen Reader Text ------------------------ */


.screen-reader-text {
	clip: rect( .1rem, .1rem, .1rem, .1rem );
	height: .1rem;
	overflow: hidden;
	position: absolute !important;
	width: .1rem;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: .3rem;
	box-shadow: 0 0 .2rem .2rem rgba( 0, 0, 0, 0.6 );
	clip: auto !important;
	display: block;
	font-size: 1.4rem;
	font-weight: 700;
	height: auto;
	left: .5rem;
	line-height: normal;
	padding: 1.5rem 2.3rem 1.4rem 2.3rem;
	text-decoration: none;
	top: .5rem;
	width: auto;
	z-index: 100000;
}


/* --------------------------------------------------------------------------------------------- */
/*	2. Content Style 
/* --------------------------------------------------------------------------------------------- */


main {
	align-items: center;
	display: flex;
	max-width: 50.6rem;
	margin: 0 auto;
	min-height: 100vh;
	padding: 4rem 0;
	width: 90%;
}

section {
	width: 100%;
}

svg {
	display: block;
	height: auto;
	margin-bottom: 1.75rem;
	max-width: 35.1rem;
	width: 75%;
}

p {
	margin-bottom: 1em;
	line-height: 1.5;
}

p:last-child {
	margin: 0;
}

a {
	color: #3F66B2;
	text-decoration: underline;
}

a:hover {
	color: #32518E;
}


/* --------------------------------------------------------------------------------------------- */
/*	3. Media Queries
/* --------------------------------------------------------------------------------------------- */


@media ( min-width: 500px ) {


	body {
		font-size: 2rem;
	}

	main {
		padding: 6rem 0;
	}

	svg {
		margin-bottom: 3.5rem;
	}

	p {
		margin-bottom: 1.1em;
	}


}