 * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
  height: 100%;
}
body {
	min-height: 100%;
	font-family: 'Poppins', sans-serif;
	color: #333;
	line-height: 1.6;
	background: url(bg_3000.png);
	background-color: #000;
	background-repeat: no-repeat;
	background-size: 2600px;
	background-position: 50% 100%;
}
header {
	background-color: #1a1a1d;
	opacity: 0.9;
	color: #f4f4f4;
	padding: 32px 0;
	text-align: center;
	position: relative;
}
header h1 {
	font-size: 3em;
	margin-bottom: 0;
}
header p {
	font-size: 1.2em;
	margin-top: 0;
	font-weight: 300;
	font-style: italic;
}
a { color: #8a8a8a }
section {
	padding: 40px 20px;
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}
h2 {
	text-align: center;
	font-size: 2.5em;
	margin-bottom: 20px;
	color: #fff;
}
p { color: #8a8a8a; text-align: center; padding: 0 0 12px 0}
ul li { color: #8a8a8a; list-style-type: none; }

/* sizing for footer pos */
.container { height: 100vh; }
header { height: 180px; }
footer { height: 110px; }
.main { min-height: calc(100vh - 290px); }

footer {
	background-color: #1a1a1d;
	opacity: 0.9;
	color: white;
	padding: 20px 0;
	text-align: center;
	font-size: 0.9em;
}
footer p { padding: 0 0 2px 0}

.container > * { min-width: 375px }