@font-face {
	font-family: Steelfish;
	src: url("steelfish/steelfish_rg.otf") format("opentype");
}

@font-face {
	font-family: Steelfish;
	font-style: italic;
	src: url("steelfish/steelfish_rg_it.otf") format("opentype");
}

@keyframes hero-move-in {
	from { font-size: 24rem; opacity: 0.0;}
	to { font-size: 8rem; opacity: 1.0;}
}


BODY {
	font-family: "Steelfish", sans-serif;
	background-color: #000000;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	background-image: url('./swoosh.svg');
	background-size: 400px auto;
	background-attachment: fixed;
}

A {
	color: inherit;
	text-decoration: none;
}

HEADER {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

HEADER .logo {
	width: 3rem;
}

NAV {
	font-size: 1.4rem;
	letter-spacing: 4px;;
}

NAV UL {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	list-style-type: none;
}

NAV LI {
	padding: 0 0 0.6rem 0;
}

SECTION {
	display: flex;
	flex-direction: column;
}

ARTICLE {
}

ARTICLE.hero {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	margin: 0 auto 0 auto;
	padding-top: 5rem;
}

.herocontent {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.herotext {
	font-size: 8rem;
	font-style: italic;
	text-transform: uppercase;
	flex-grow: 1;
	animation: hero-move-in 0.6s linear 1;
}

.herobutton, BUTTON {
	background-color: transparent;
	text-align: center;
	font-size: 2rem;
	padding: 0.5rem 2rem 0.5rem 2rem;
	border: 1px solid #9e2439;
	margin: 1rem 0 0 0;
	color: white;
	font-family: "Steelfish", sans-serif;
}

DIV.herobutton:hover {
	background-color: #9e2439;
}

H1 {
	font-style: italic;
	text-align: center;
	font-size: 4rem;
	margin: 6rem 1rem 6rem 1rem;
}

.services UL {
	display: flex;
	flex-direction: column;
	list-style-type: none;
}

.services UL {
	display: flex;
	justify-content: space-around;
	padding: 0 4rem 0 4rem;
}

.services LI {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	justify-content: space-between;
}

.services IMG {
	height: 80px;
	width: auto;
}

.services H2 {
	text-align: center;
	flex-grow: 1;
}

.services P {
	text-align: center;
	color: #999999;
	margin: 8px 0 8px 0;
}

.red {
	color: #9e2439;
}

#imprint {
	margin: 0 5rem 0 5rem;
	
}

#imprint H1 {
	color: #9e2439;
	text-align: left;
	font-style: normal;
	margin: 2rem 0 2rem 0;
}

#imprint H2 {
	margin: 1rem 0 0.25rem 0;
}

#imprint H3 {
	margin: 1rem 0 0.25rem 0;
}

#imprint p {
	margin: 0.25rem 0 0 0;
}

FORM {
	display: flex;
	flex-direction: column;
	margin: 0 2rem 0 2rem;
}

LABEL {
	margin: 1rem 0 0.5rem 0;
	font-size: 1.5rem;
	text-align: center;
}

INPUT, TEXTAREA, SELECT {
	background-color: #999999;
	font-size: 1.5rem;
	font-family: "Steelfish", sans-serif;
}

SELECT {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border: none;
	background-color: #999999;
	font-size: 1.5rem;
	font-family: "Steelfish", sans-serif;
	padding: 0.5rem;
	border-radius: 0;
}

OPTION {
	padding: 0.5rem;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border: none;
	border-radius: 0;
}


BUTTON:hover {
	background-color: #9e2439;
}

#notes {
	display: none;
}

#formstatusmessage {
	text-align: center;
	font-size: 1.25rem;
}

FOOTER {
	display: flex;
	flex-direction: row;
	justify-content: center;
	font-family: "Steelfish", sans-serif;
	margin: 5rem 0 2rem 0;
}

@media (min-width: 601px) {
	NAV UL {
		flex-direction: row;
	}
	
	NAV LI {
		padding: 0 2rem 0 0;
	}

	ARTICLE.hero {
		flex-direction: row;
		margin: 0 16rem 0 0;
	}
	.services UL {
		flex-direction: row;
	}
	
	.services LI {
		margin: 0 40px 0 40px;
	}
	
	.services LI P {
		font-size: 1.2rem;
	}
	
	.services H2 {
		margin: 8px 0 8px 0;
	}
	
	FORM {
		margin: 0 10rem 0 10rem;
	}
}
