@charset "utf-8";

:root {
	font-size: 16px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	color: #000;
	font-family: 'Roboto', Arial, sans-serif;
	font-size: 0.875rem;
	line-height: 1.4;
	background-color: #ebebeb;
}

img {
	max-width: 100%;
	height: auto;
}

#wrapper {
	max-width: 50rem;
	margin: 1rem auto;
	background: #fff;
	box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.5);
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.center {
	text-align: center;
}

ul {
	margin: 0 0 1.5rem 1rem;
}

p {
	margin: 0 0 1.5rem;
}

span {
    white-space: nowrap;
}

h1 {
	font-size: 1.75rem;
	margin: 0 0 1rem;
	line-height: 1.2;
}


h2 {
	font-size: 1.125rem;
	margin: 0 0 1rem;
	line-height: 1.4;
}


article {
	padding: 2rem 3rem;
}

footer {
	padding: 0 2.5rem 2.5rem;
}


@media only screen and (max-width: 49.937rem) {
	#wrapper {
		border: none;
		margin: 0 auto;
	}

	p,
	ul {
		-moz-hyphens: auto;
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
		hyphens: auto;
	}

	article {
		padding: 1rem;
	}

	footer {
		padding: 0 1rem 1rem;
	}
}
