/* GLOBAL */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-weight: normal;
	font-family: 'Times New Roman', Times, serif;
}
body {
	display: flex;
	flex-flow: row;
	/* align-items: flex-start; */
	justify-content: center;
	align-items: stretch;
	height: 100vh;
	background: #eee;
	padding: 2vmin;
	background: url('../img/EML_bg.jpg');
	background-size: cover;
}

/* CONTAINERS */
#MainWrapper {
	position: relative;
	background: transparent;
	/* padding: 2vmin; */
	display: flex;
	flex-flow: column;
	justify-content: stretch;
	align-items: stretch;
	/* max-width: 95vh; */
	/* aspect-ratio: 1; */
	box-sizing: border-box;
}
@media screen and (orientation: landscape) {
#MainWrapper {
	width: 100%;
}}
@media screen and (orientation: portrait) {
#MainWrapper {
	width: 95%;
}}
main {
	flex-grow: 1;
	border: 1.75px solid black;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
}

/* TYPOGRAPHY */
h1 {
	font-size: 15vmin;
	text-align: center;
}
a, a:active, a:hover, a:visited {
	font-family: inherit;
	color: inherit;
	text-decoration: none;
}
a:hover, a:active {
	text-decoration: underline;
}

/* FOOTER */
footer {
	display: flex;
	flex-flow: row;
	justify-content: space-between;
	align-items: center;
	margin: 2vmin 0 0.2vmin 0;
}
footer p {
	font-size: 2.5vmin;
}
footer p .arrow {
	font-family: 'Inter', Arial;
}
footer p.label .arrow {
	font-weight: 300;
	display: inline-block;
	position: relative;
	bottom: -.05em;
	font-size: .825em;
}
footer p.call {
	font-family: "Authentic Sans 130", Arial, Helvetica, sans-serif;
	color: white;
}
footer p.call .arrow {
	font-weight: 600;
}