:root {
	--white: #fff;
	--black: #222;
}

html {
	box-sizing: border-box;
}

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

body {
	position: relative;
	padding: 0;
	margin: 0;
	height: 100vh;
	color: var(--white);
	background-color: var(--black);
	z-index: 0;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: 400;
	font-style: normal;
	font-size: 100%;
	line-height: 1.25;
}
svg {
	display: block;
	width: 600px;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
	fill: var(--white);
}

.figure {
	position: absolute;
	inset: 0;
	margin: 0;
	width: 100%;
	height: 100vh;
	z-index: -1;
}

.figure::before {
	content: "";
	display: block;
	width: 100%;
	height: 100vh;
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 20%);
	z-index: 0;
}

.figure img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.main {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: flex-start;
	max-width: 100%;
	height: 100vh;
	margin: 0 1rem;
}

.primary_heading {
	margin: 12.5% 0 2rem;
	font-size: clamp(3rem, 7vw, 4rem);
	text-align: center;
	text-shadow: 2px 2px 2px rgba(0, 0, 0, 65%);
}
