* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-rendering: optimizelegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	vertical-align: top;
}

:root {
	--pink: #ff0085;
	--bg: #f3f3f3;
	--max-width: 1400px;
}

@-ms-viewport {
	width: device-width;
}
html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bg);
	font-family: "Jost", sans-serif;
	font-weight: 400;
	font-style: normal;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background: url("/img/poster_68_comp.jpg") no-repeat center center;
	background-size: cover;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Jost", sans-serif;
	font-weight: 400;
	font-style: normal;
}

main {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	max-width: var(--max-width);
	width: 100%;
	margin: 0 auto;
}

.foreground-img {
	width: 100%;
	display: block;
	height: auto;
	z-index: 1;
}

.content {
	width: 100%;
	padding: 0 2rem;
}

footer {
	border-top: 2px solid var(--pink);
	width: 100%;
	max-width: var(--max-width);
	display: flex;
	align-items: center;
	margin: 1em auto 0;
	justify-content: center;
	flex-direction: column;
	position: sticky;
	top: 0;
	z-index: 100;
}

nav {
	border-bottom: 2px solid var(--pink);
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1em;
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgb(from var(--bg) r g b/0.95);
}

.copy {
	margin: 2rem auto;
	max-width: 900px;
	width: 100%;
}
.copy > * {
	margin-bottom: 1em;
}

h1 {
	font-size: 2em;
	text-transform: uppercase;
	margin-bottom: 1em;
	color: var(--pink);
}

h2 {
	font-size: 1.5em;
	text-transform: uppercase;
	margin-bottom: 1em;
	color: var(--pink);
}

p {
	font-size: 1em;
	margin-bottom: 1em;
}

p a {
	color: var(--pink);
}

.headline {
	display: flex;
	align-items: center;
	gap: 1em;
	margin-bottom: 1em;
}
.headline img {
	width: auto;
	height: 6rem;
}
.headline h1 {
	margin-bottom: 0;
}

nav a {
	text-transform: uppercase;
	padding: 1em;
	display: inline-flex;
	color: var(--pink);
	text-decoration: none;
}

.bg-img {
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

nav a span {
	display: none;
}

footer p {
	font-size: 14px;
}

footer nav {
	background: transparent;
	flex-direction: column;
}

footer nav a {
	padding-top: 0.5em;
	font-size: 14px;
	padding-bottom: 0.5em;
}

@media (min-width: 768px) {
	p {
		font-size: 1.25em;
	}
	h1 {
		font-size: 3em;
	}
	h2 {
		font-size: 2em;
	}
	nav a span {
		display: block;
	}
	footer nav {
		flex-direction: row;
	}
	footer nav a {
		padding-top: 1em;
		padding-bottom: 1em;
	}
}
