:root {
	--banner-blend: #00000060;
	--banner-main: #fff;
	--banner-secondary: #ddd;
}

main {
	min-height: 84vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.banner {
	height: 50vh;
	width: 100%;

	background-image: url("./banner.jpeg");
	background-size: cover;
	background-position: center;
	background-color: var(--banner-blend);
	background-blend-mode: darken;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	animation-duration: 1s;
	animation-delay: 0.5s;
}

.banner > * {
	animation-duration: 0.25s;
	animation-delay: 1s;
}

main::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;

	width: 100%;
	height: 50vh;
	z-index: -1;

	background-color: #000;
}

.banner > :first-child {
	font-family: serif;
	font-size: 18pt;
	font-style: italic;
	font-weight: 100;
	color: var(--banner-secondary);
}

.banner > :last-child {
	font-family: "Raleway", sans-serif;
	text-transform: uppercase;
	font-weight: 800;
	letter-spacing: 6px;
	font-size: 48pt;
	margin: 2vh 0 3vh 0;
	color: var(--banner-main);
}

p {
	display: flex;
	justify-content: center;
	height: 100%;
	width: 65vw;
	padding-top: 5vh;
	padding-bottom: 5vh;
}

@media (max-width: 1400px) {
	main::before{
		height: 30vh;
	}

	.banner > *:first-child{
		margin-top: 8vh;
		font-size: 32pt;
	}

	main > p{
		width: 90vw;
		margin: 5vw 10vh;
	}
}
