@font-face {
	font-family: 'PostGroteskBlack';
	src: url('../fonts/postgrotesk/postgrotesk-black.woff2') format('woff2'),
		url('../fonts/postgrotesk/postgrotesk-black.otf') format('otf'),
		url('../fonts/postgrotesk/postgrotesk-black.eot') format('eot');
	}
@font-face {
	font-family: 'PostGroteskBold';
	src: url('../fonts/postgrotesk/postgrotesk-bold.woff2') format('woff2'),
		url('../fonts/postgrotesk/postgrotesk-bold.otf') format('otf'),
		url('../fonts/postgrotesk/postgrotesk-bold.eot') format('eot');
}
@font-face {
	font-family: 'PostGroteskBook';
	src: url('../fonts/postgrotesk/postgrotesk-book.woff2') format('woff2'),
		url('../fonts/postgrotesk/postgrotesk-book.woff') format('woff'),
		url('../fonts/postgrotesk/postgrotesk-book.eot') format('eot');
}
@font-face {
	font-family: 'PostGroteskMedium';
	src: url('../fonts/postgrotesk/postgrotesk-medium.woff2') format('woff2'),
		url('../fonts/postgrotesk/postgrotesk-medium.woff') format('woff'),
		url('../fonts/postgrotesk/postgrotesk-medium.eot') format('eot');
}
* {
	box-sizing: border-box;
}
html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}
body {
	color: white;
	background-color: black;
	font-family: 'PostGroteskBook';
	display: flex;
	flex-direction: column;
	/* justify-content: space-between; */
}

header {
	text-align: center;
	margin: 0 auto;
	width: 100%;
}
main {
	width: 100vw;
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}
main p {
	display: inline-block;
	margin: 0 0 1em 0;
	padding: 0 2em;
	width: 100%;
	font-family: 'PostGroteskBold';
	font-size: 1.15em;
	text-align: center;
	color: #576471;
}
footer {
	position: sticky;
	top: 100vh;
	text-align: center;
	width: 75%;
	margin: 1.5em auto;
}
h1 {
	font-family: 'PostGroteskBold';
	font-size: clamp(1.5em, 3.5vw, 2.25em);
}
span.producers-guild {
	font-family: 'PostGroteskBook';
	font-size: .7em;
}
img.logo {
	width: 100%;
	max-width: 1000px;
}
header.about img.logo {
	width: 100%;
	max-width: 700px;
}
ul.links {
	font-family: 'PostGroteskBlack';
	list-style: none;
}
ul.links li {
	text-transform: uppercase;
	display: inline-block;
	letter-spacing: 2px;
	margin-right: 2em;
}
@media screen and (max-width: 600px) {
	ul.links li {
		display: block;
		margin-top: 1.5em;
	}
}
a {
	font-family: 'PostGroteskBlack';
	text-decoration: none;
	/* font-size: 1.2em; */
}
a.phone,
a.sigrid {
	color:#F39325;
}
a.email,
a.newen {
	color:#EC6608;
}
a.about {
	color:#E84E0F;
}
a.back {
	letter-spacing: 3px;
	display: inline-block;
	margin: 2em auto;
	width: 100%;
	text-align: center;
	color:#E84E0F;
}
footer span.newen,
footer a.newen {
	font-family: 'PostGroteskMedium';
	color: #576471;
	letter-spacing: 7px;
	font-size: clamp(.75em, 1.333vw, 2em);
}
a:hover {
	text-decoration: underline;
}
.nobreak {
	white-space: nowrap;
}