.frontpage-container {
	display: flex;
	flex-direction: column;
	gap: var(--padding-large);
}

.frontpage-banner {
	--frontpage-banner-max-height: 400px;
	--frontpage-banner-height: 80vh;

	margin: 0 auto;
	width: 100%;
	height: var(--frontpage-banner-height);
	max-height: var(--frontpage-banner-max-height);
	min-height: fit-content;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.frontpage-banner::before {
	content: "";
	position: absolute;
	display: block;
	left: 0;
	right: 0;
	height: var(--frontpage-banner-height);
	max-height: var(--frontpage-banner-max-height);
	background-image: url("../media/banner.jpeg");
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
}

.frontpage-bannerTitle {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: var(--padding-large);
	text-align: center;
}

.frontpage-bannerTitle h1 {
	font-size: min(6vw, 5rem);
	color: var(--color-primary);
	font-weight: bold;
	/*text-shadow:
		-0.5px -0.5px 0px var(--color-white),
		0.5px -0.5px 0px var(--color-white),
		-0.5px 0.5px 0px var(--color-white),
		0.5px 0.5px 0px var(--color-white);*/
	-webkit-font-smoothing: antialiased;
	-webkit-text-stroke: 1.5px var(--color-white);
}

.frontpage-bannerTitle h3 {
	font-size: min(4vw, 2rem);
	color: var(--color-white);
	/*text-shadow: -0.5px -0.5px 0px var(--color-black),
		0.5px -0.5px 0px var(--color-black),
		-0.5px 0.5px 0px var(--color-black),
		0.5px 0.5px 0px var(--color-black);*/
	-webkit-font-smoothing: antialiased;
	-webkit-text-stroke: .5px var(--color-black);
}

.frontpage-content>h3 {
	color: var(--color-secondary);
}
