html {
	font-family: "Courier New", monospace;
	font-size: 16px;
}

a {
	text-decoration: none;
	color: #000;
	margin-bottom: 1em;
	font-size: 1.1em;
}

.logo {
	position: absolute;
	width: 70%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}

.contact {
	position: absolute;
	width: 100%;
	height: 95%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

@media(min-width: 600px)
{
	.logo {
		width: 50%;
	}
}

@media(min-width: 1000px)
{
	a:hover { color: #00F; }
	a:hover:before { content: "{ "; }
	a:hover:after { content: " }"; }

	a:hover:before,
	a:hover:after {
		color: #000;
		text-decoration: none;
	}

	.logo {
		width: 30%;
	}
}