* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	color: #333;
	font-size: 16px;
	font-family: sans-serif;
	background: #ddd;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

.page {
	width: 800px;
	max-width: 90vw;
	margin: 10vh auto;
	padding: 20px 30px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 10px 35px -20px #999;
}

a {
	color: #333;
	text-decoration: none;
	border-bottom: 1px dotted;
}
a:hover {
	border-bottom: 1px solid;
}

.logo {
	width: 300px;
	max-width: 100%;
	min-height: 85px;
	margin-top: 12px;
	margin-bottom: 50px;
}

h1 {
	font-size: 24px;
	font-weight: normal;
	margin: 50px 0 15px;
}

p {
	margin: 15px 0;
	padding-left: 25px;
	color: #777;
}

.contact {
	margin-top: 50px;
	text-align: right;
}
