* {
	box-sizing: border-box;
}

body {
	font-family: 'Open Sans', sans-serif;
	margin:  0;
	text-align:  center;
}

.site-wrapper {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 100vh;
	padding: 30px;
}

.site-logo {
	display: block;
	margin-bottom: 40px;
	max-width: 100%;
	width: 350px;
}

h1 {
	font-size: 1.5em;
	margin-bottom: 35px;
}

p {
	margin: 18px;
}

a {
	border-bottom: 1px dotted #265197;
	color: #265197;
	display: inline-block;
	text-decoration: none;
	transition: 0.2s;
}

a:hover {
	border-color: transparent;
	color: #3773D7;
}


@media (min-width: 1024px) {

	.site-wrapper {
		padding: 60px;
	}

	.site-logo {
		width: auto;
	}

	h1 {
		font-size: 2.4em;
		margin-bottom: 35px;
	}

	p {
		font-size: 1.5em;
		margin: 18px;
	}

	.services {
		font-size: 1.1em;
		margin-top: 2.8em;
	}
}