* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html { height: 100%; }
body { 
	height: 100%;
	font-size: 16px;
	line-height: 20px;
	font-weight: normal;
	font-family:'Eurostile LT W01 Medium788251';
	letter-spacing: 1px;
	overflow: hidden;
	-webkit-text-size-adjust: none;
}

h1 {
	font-size: 24px;
	margin-bottom: 0.5em;
	font-weight: 700;
}

a {
	color: black;
	text-decoration: underline;
}


.wrapper {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}

header {
	position: relative;
	width: 100%;
	margin-top: 50px;
}

header .logo {
	width: 60%;
	margin: 0 auto;
}

header .logo img {
	width: 100%;
	display: block;
}


main {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	margin-top: 60px;
}

main .container {
	width: 50%;
	padding: 20px;
}

footer {
	width: 100%;
	padding: 20px;
	background-color: black;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
}

footer .footer-container {
	width: 100%;
	color: white;
	text-align: center;
}

footer .footer-container a {
	color: white;
	text-decoration: underline;
}

@media (max-width: 680px) {
	body {
		font-size: 14px;
		line-height: 16px;
		background-color: black;
		overflow: auto;
	}
	h1 {
		font-size: 18px;
		margin-bottom: 0.5em;
		font-weight: 700;
	}
	header {
		margin: 0;
		padding-top: 20px;
		background-color: white;
	}
	header .logo {
		width: 45%;
	}
	main {
		flex-wrap: wrap;
		padding-top: 20px;
		margin: 0;
		background-color: white;
	}
	main .container {
		width: 100%;
		padding: 10px 25px;
		margin-bottom: 10px;
		text-align: center;
	}
	footer {
		padding: 10px;
		position: relative;
		width: 100%;
	}
	footer .footer-container {
		font-size: 10px;
		line-height: 12px;
	}
}