:root {
	font-family: Inter, sans-serif;
	font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */
	font-feature-settings: "dlig", "zero", "ss01", "ss03", "cv01", "cv10";
	--backColor: #615243;
	--foreColor: #dacaaa;
}
@supports (font-variation-settings: normal) {
	:root { font-family: InterVariable, sans-serif; }
}
* {
	margin: 0;
	padding: 0;
	border: 0;
}
html, body {
	height: 100%;
}
body {
	font-optical-sizing: auto;
	font-weight: 450;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: none;	
	line-height: 1.45;
	letter-spacing: 0.4px;
	background-color: var(--backColor);
	color: var(--foreColor);
}
header, #content, footer {
	box-sizing: border-box;
	min-height: 100%;
	padding: 0 4rem;
}
header {
	display: grid;
	grid-template: 1fr auto 4rem / 50% 1fr;
}
header > h1 {
	grid-column: 1 / span 2;
	align-self: center;
	font-size: 12.5rem;
	font-weight: 600;
	letter-spacing: -3.5px;
	line-height: 1;
	margin-top: -2rem;
	margin-left: -0.5rem;
}
header > p {
	grid-column: 1 / span 2;
	align-self: center;
	justify-self: end;
	font-size: 1rem;
	color: #999;
}
header > p > a {
	color: #999;
	border: 0;
}
header > p > a:hover {
	border: 0;
	text-decoration: underline;
}
#left {
	align-self: end;
}
#left > h2, #join > p > strong {
	font-size: 2rem;
	font-weight: 600;
	letter-spacing: 0;
}
#left > p {
	font-size: 1.25rem;
	max-width: 35.35rem;
	margin-top: 1rem;
}
a {
	color: var(--foreColor);
	text-decoration: none;
	border-bottom: 1.5px solid var(--foreColor);
}
a:hover {
	border-bottom: 2.25px solid var(--foreColor);
}
#right {
	justify-self: end;
	align-self: end;
	margin-left: 2rem;
}
#join {
	box-sizing: border-box;
	text-align: center;
	border: 2px solid var(--foreColor);
	border-radius: 6px;
	padding: 2rem;

	display: grid;
	grid-template: auto auto auto  / auto auto;
}
#join > a.logo {
	grid-row: 1 / span 3;
	align-self: center;
	margin-right: 2rem;
	border: 0;
	display: inline-grid;
}
#join > a > img {
	width: 170px;
	border-radius: 50%;
}
#join > p {
	font-size: 1.25rem;
}
#join > a.button {
	display: block;
	font-size: 1.25rem;
	color: var(--foreColor);
	border: 2px solid var(--foreColor);
	border-radius: 4px;
	padding: 1rem;
	margin: 2rem auto 0 auto;
	max-width: 16rem;
}
#join > a.button:hover {
	background-color: var(--foreColor);
	color: var(--backColor);
}

@media screen and (max-width: 1279px) {
	header {
		padding: 0 2rem;
	}
	#join {
		display: block;
	}
	#join > a.logo {
		display: inline-grid;
		margin-right: 0;
		margin-bottom: 2rem;
	}
}
@media screen and (max-width: 1023px) {
	header {
		display: block;
		padding: 8rem 1rem 2rem 1rem;
	}
	header > h1 {
		margin-bottom: 6rem;
		margin-left: 0;
		font-size: calc(100vw / 5.5);
	}
	header > p {
		text-align: center;
	}
	#right {
		margin: 6rem 0 0.5rem 0;
	}
	#join {
		max-width: 24rem;
		margin: 0 auto;
	}
}