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

html, body {
	padding: 0;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	margin: 0;
	font-size: 16px;
	background-color: #FFFFFF;
	color: #1F1F1F;
}

.wrapper {
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

h1 {
	position: relative;
	margin: 0;
	font-size: 8rem;
	font-family: 'Arial', systemui, sans-serif;
	font-weight: 900;
	color: #1F1F1F;
	text-transform: uppercase;
	background-color: #FFFFFF;
	z-index: 2;
}
h1::after {
	content: 'Sutherland';
	position: absolute;
	bottom: 0;
	left: 10rem;
	font-size: 24rem;
	color: #1F1F1F;
	opacity: 0.03;
	z-index: 1;
}

h1 span {
	position: absolute;
	font-size: 14rem;
	right: 73.9%;
	top: 50%;
	display: inline-block;
	color: #FFFFFF;
	transform: rotate(-90deg);
}
h1 span::before {
	content: '';
	position: absolute;
	top: -9999%;
	left: -9999%;
	bottom: 20.5%;
	right: -9999%;
	background-color: #1F1F1F;
	z-index: -1;
}
h1 span::after {
	content: 'Jake';
	position: absolute;
	bottom: -20%;
	left: 50%;
	transform: translateX(-50%);
	font-size: 24rem;
	color: #FFFFFF;
	opacity: 0.03;
	z-index: 1;
}

h3 {
	margin: 1rem 0 0.5rem;
	font-size: 2rem;
	font-family: 'Arial', systemui, sans-serif;
	font-weight: 900;
}

code {
	background-color: #F1F1F1;
	padding: 0.3rem;
	font-family: monospace;
	font-weight: 600;
}

p {
	margin: 0 0 2rem;
	font-size: 1.5rem;
	font-family: 'Arial', systemui, sans-serif;
	font-weight: 400;
}

a {
	color: #81B181;
	text-decoration: underline;
	font-family: monospace;
	font-size: 1.5rem;
	font-weight: 600;
}
a:hover {
	color: #96be96;
}

@media (max-width: 1280px) {
	.wrapper {
		align-items: flex-end;
		padding-right: 8rem;
	}

	h1  {
		font-size: 6rem;
	}
	h1::after {
		font-size: 18rem;
		left: 5rem;
	}
	h1 span {
		right: 65.5%;
	}
	h1 span::before {
		bottom: 21%;
	}

	.intro {
		padding-right: 4rem;
	}

}

@media (max-width: 960px) {
	h1 {
		font-size: 4rem;
	}
	h1::after {
		font-size: 9rem;
		left: 2.5rem;
	}
	h1 span {
		right: 74%;
		font-size: 8rem;
		padding-top: 2rem;
	}
	h1 span::before {
		bottom: 17%;
	}
	h1 span::after {
		font-size: 18rem;
	}

	h3 {
		font-size: 1.5rem;
	}
	p {
		font-size: 1.25rem;
	}

	.intro {
		padding-right: 0;
	}
}

@media (max-width: 700px) {
	.wrapper {
		padding-right: 2rem;
	}
}

@media (max-width: 575px) {
	h1 {
		font-size: 3rem;
	}
	h1::after {
		font-size: 7rem;
		left: 2rem;
	}
	h1 span {
		right: 76.5%;
		font-size: 5rem;
		padding-top: 0.5rem;
	}
	h1 span::before {
		bottom: 19%;
	}
	h1 span::after {
		font-size: 10rem;
		bottom: -19%;
	}

	.intro {
		max-width: 280px;
	}

	h3 {
		font-size: 1.25rem;
	}
	p {
		font-size: 1rem;
	}
	a {
		font-size: 1rem;
	}
}