html {
	font-size:62.5%;
}

* {
    margin: 0;
    padding: 0;
} 

body {
	margin:0;
	padding:0;
	font-size:1.4em;
	line-height:2.13rem;
	font-family:GP, sans-serif;
	overflow-y:scroll;
	overflow-x:hidden;
	background:#151615;
	color:white;
	box-sizing:border-box;
	text-shadow:0px 0px 20px #0e0e0ebd;
	font-weight:normal;
}

h5, a, p, {
	font-size:1.8rem;
}

a {
	font-family:EBG, serif;
	color:white;
	text-decoration:none;
}

.accent {
	font-family:EBG, serif;
	font-weight:normal;
}

.main {
	display:flex;
}

.box {
	box-sizing:border-box;
}

.nav {
	visibility:hidden;
	position:fixed;
	padding:1.6rem;
	right:0;
}

.background {
	position:fixed;
	display:flex;
	top:0;
	width:100vw;
	z-index:-4;
}

.background > img {
  object-fit: cover;
  height: 100vh;
  width: 100%;
}

.logo {
	position:fixed;
	width:100%;
	padding:0 6vw;
	top:33%;
	transform: translate(0, -50%);
	text-align:center;
}

.logo > img {
	object-fit:cover;
	width:100%;
}

.logo > .accent {
	margin-top:1.2rem;
	font-size:1.6rem;
}

.blurb {
	width:100%;
	position:absolute;
	bottom:2.4rem;

	p { 
		margin:0 1.6rem 2.4rem; 
		text-wrap: balance;
		text-align:center;
	}
}

.contact {
	display:flex;
	max-width:100%;
	justify-content: center;
	margin:0 1.2rem;
	padding:.8rem;
	border:1px solid #ffffff85;
	box-sizing:border-box;
}

.sound {
	font-family:GPB, sans-serif;

	#soundOn {
		opacity:.6;
		background: 0 0;
		border: 0;
		padding: 0;
		font: inherit;
		cursor: pointer;
		outline: inherit;
		color:#fff;
		transition:.5s ease all;
	}

	#soundOn:hover {
		transition:.5s ease all;
		opacity:1;
	}
}






@font-face {
  font-family: "C";
  src:
    url("assets/CardinalPhoto-Light-Trial.otf") format("opentype"),
}

@font-face {
	font-family: "GP";
	src:
	url("assets/Gerstner Programm Regular.otf") format("opentype");
	font-weight:normal;
	font-style:normal;
}

@font-face {
	font-family: "GPB";
	src:
	url("assets/Gerstner Programm Bold.otf") format("opentype");
	font-weight:normal;
	font-style:normal;
}

@font-face {
	font-family: "EBG";
	src:
	url("assets/EBGaramond-VariableFont_wght.ttf") format("truetype"),
	url("assets/EBGaramond-Italic-VariableFont_wght.ttf") format("truetype");
	font-weight:normal;
	font-style:normal;
}

@font-face {
	font-family: "EBGItalic";
	src:
	url("assets/EBGaramond-Italic-VariableFont_wght.ttf") format("truetype");
	font-weight:normal;
	font-style:normal;
}

.seq1 {
	opacity:0;
	animation: 2.8s fade ease;
	animation-delay:.8s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}

.seq2 {
	opacity:0;
	animation: .8s fade ease;
	animation-delay:1.8s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}

.seq3 {
	opacity:0;
	animation: .5s fade ease;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}

.seq4 {
	opacity:0;
	animation: .8s fade ease;
	animation-delay:3s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}


@keyframes fade {
	0% {opacity:0;}
	100% {opacity:1;}
}

@media (min-width:540px) {

.logo {
	top:40%;
}

body {
	font-size:1.6em;
}

.blurb {
	p {	max-width:54rem;
		margin:0 auto 3.2rem;}
}

.contact {
	max-width:32rem;
	justify-content: center;
	margin:0 auto;
}

}

@media (min-width: 768px) {

.blurb {
	bottom:3.2rem;

	p {
		max-width:64rem;
		margin:0 auto 4.0rem;}
}

}

@media (min-width: 992px) {

.nav {
	visibility:visible;
}

.logo {
	top:50%;
}

.logo > .accent {
	margin-top:2vh;
	font-size:1.6vw;
}

.blurb {
	p {
		max-width:99.2rem;
		margin:0 auto 4.0rem;}
}

}

@media (min-width: 1200px) {

}

@media (min-width: 1600px) {

.logo > .accent {
	margin-top:3vh;
}

}

@media only screen and (max-height: 640px) and (orientation: landscape) {

.logo {
	position:static;
	transform:none;
	margin-top:1.6rem;
}

.blurb {
	position:static;
	p {
		margin:3.2rem auto 2.4rem;}
}

.blurb > .contact {
	margin-bottom:3.2rem;
}

}