*, *::before, *::after { box-sizing: border-box; }

html, body {
	margin: 0;
	height: 100%;
	font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
	color: #f2f2f2;
	background: #0a0a0a;
}

body {
	min-height: 100%;
	display: grid;
	place-items: center;
	padding: 2rem 1.5rem;
	background:
		linear-gradient(rgba(10, 10, 10, 0.78), rgba(10, 10, 10, 0.92)),
		url("assets/banner.png") center/cover no-repeat;
}

main {
	text-align: center;
	max-width: 56rem;
	width: 100%;
}

.logo {
	width: 100%;
	max-width: 48rem;
	height: auto;
	display: block;
	margin: 0 auto 2rem;
	filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.6));
}

.tagline {
	font-size: clamp(1rem, 2.5vw, 1.25rem);
	letter-spacing: 0.35em;
	text-transform: uppercase;
	margin: 0 0 1.5rem;
	color: #c8c8c8;
}

.contact { margin: 0; font-size: 1rem; }

.contact a {
	color: #f2f2f2;
	text-decoration: none;
	border-bottom: 1px solid #f2f2f2;
	padding-bottom: 2px;
	transition: opacity 0.15s ease;
}

.contact a:hover { opacity: 0.7; }
