@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Montserrat&display=swap');

body {
	margin: 0px;
	padding: 0px;
	overflow-y: auto;
	background: url("background.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;

}

#header {
	width: 100%;
	display: flex;
	align-items: center;
	background-color: #126;
	background-image: url("header0.png");
	background-size: cover;
	background-position: center;
	color: white;
	transition: background 1.5s
}

#header>img {
	width: 15vw;
	padding: 2vw;
}

#header>div {
	padding: 8vw;
	text-shadow: 0px 0px 50px #444;
	font-size: 5vw;
}

.social {
	width: calc(100vw - 30px);
	max-width: 1200px;
	margin: -70px auto 25px auto;
	text-align: right;
}

.social>a>img {
	margin: 0px 5px;
	border-radius: 5px;
	padding: 5px;
	background: white;
}

#banner {
	position: sticky;
	top: 0;
	background: #36C;
	width: 100%;
	padding: 20px 0px;
	text-align: center;
	color: white;

}

#banner>img {
	vertical-align: bottom;
	padding: 0px 5px;
	opacity: 0.95;
}

#banner>a {
	border-bottom: 2px solid transparent;
	margin: 0px 10px;
	padding: 2px 5px 5px 5px;
	font: 24px Montserrat, Tahoma, sans-serif;
	text-decoration: none;
	color: white;
}

#banner>a[href]:hover {
	border-bottom: 2px solid white;
	text-shadow: 0 0 2px white;
	transition: .5s;
}

#banner>a:visited {
	color: white;
}

#banner>a:not([href]) {
	border-bottom: 2px solid white;
}

div.container {
	display: flex;
	width: calc(100vw - 80px);
	max-width: 1200px;
	margin: auto;
	padding: 40px 20px;
}

div.container img {
	width: 100%;
	border-radius: 5px;
	box-shadow: 10px 0px 20px #4444;
}

div.container>div {
	margin: 0px 30px;
}

div.container>div>div {
	margin: 10px;
}

div {
	font: 22px Montserrat, Tahoma, sans-serif;
}

h1 {
	color: #25a;
	font: 32px Righteous;
	margin: -10px 20px 0px -10px;
}

h2 {
	margin: 0;
	font-size: 16px;
}

div.caption {
	text-align: center;
	margin-top: -5px;
	font-weight: bold;
	font-size: 70%;
}

div.small {
	width: 40%;
}

div.middle {
	margin: auto 0 auto 0 !important;
}

div.large {
	width: 80%;
}

div.container>video {
	width: 70%;
	margin: -40px auto -20px auto;
	border-radius: 5px;
	box-shadow: 10px 0px 20px #4444;
}

#footer {
	background-color: #126;
	color: white;
}

#footer>div {
	padding: 20px;
}

#footer>div>div {
	font-size: 15px;
}

#footer a {
	color: white;
	text-decoration: none;
}

@media (max-width:1100px) {
	div {
		font-size: 18px;
	}

	h1 {
		font-size: 28px;

	}
}

@media (max-width:800px) {
	div.container {
		width: calc(100vw - 20px);
		padding: 10px;
	}

	div.container>div {
		margin: 10px;
	}

	h1 {
		margin: 0px;
		font-size: 24px;
	}

	div {
		font-size: 18px;
	}

	#banner>a {
		font-size: 18px;
	}

	div.container video {
		width: 100%;
		margin: auto;
	}

	@media (max-width:400px) {

		#header {
			flex-direction: column;
		}

		#header>img {
			width: 40vw;
			padding-top: 5vw
		}

		#header>div {
			padding-bottom: 25vw;
			font-size: 8vw;
			text-align: center;
		}

		#banner>img {
			display: none;
		}

		#banner>a {
			margin: 8px;
			font-size: 12px;
		}

		div {
			font-size: 16px;
		}

		div.container {
			flex-direction: column;
		}

		div.large {
			width: auto;
		}

		div.small {
			width: 60%;
			margin: auto !important;
		}

		div.middle {
			padding: 10px;
		}

	}

	@media (max-width:300px) {

		#banner>a {
			font-size: 10px;
			margin: 4px;
		}

		div {
			font-size: 14px;
		}
	}

	@media (any-pointer:coarse) {
		#banner>a {
			border-radius: 2px;
			border: 2px solid #fff2;
		}

		#banner>a:not([href]) {
			border-bottom: 2px solid #fff;
		}

	}