*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; 
}

video {
	max-width: 100%;
	height: auto;
	padding: 10px;
}
html {
	box-sizing: border-box;
	height: 100%;
}

body {
	max-width: 100%;
	background-color: #000;
	color: #fff;
	font-family: sans-serif;
	font-size: 1em;
}

body ul {
	list-style-type: none;
}

body a {
	color: #fff;
}

body a:visited {
	color: #fff;
}

h2, h3 {
	margin-top: 20px;
	margin-bottom: 20px;
}

.skip {
	position: absolute;
	top: -1000px;
	left: -1000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	text-align: left;
}

a.skip:active, a.skip:focus, a.skip:hover {
	left: 0;
	top: 0;
	width: auto;
	height: auto;
	overflow: visible;
}

nav ul {
	display: flex;
	list-style-type: none;
	margin-top: 15px;
	margin-bottom: 15px;
	padding: 0;
	background-color: hsl(0,0%,25%);
	flex-wrap: wrap;
}

nav ul li {
	flex: 3;
}

nav ul li a:hover, nav ul li a:focus-visible {
	border: 4px solid orange;
}

nav ul li a {
	display: block;
	color: #FFF;
	font-weight: bold;
	padding: 0.5em 1em;
	margin: 0.5em;
	font-size: 1.2em;
}

nav a, a:visited {
	color: #FFF;
}

.current {
	border-left: 4px solid teal;
}

a:focus-visible {
	outline: 3px solid orange;
	outline-offset: 3px;
}
main ul li {
	margin-bottom: 0.5rem;
}

h1 {
	font-family: 'Passion One', sans-serif;
	font-size: 2.2em;
	margin: 1.5rem 0 1rem 0;
	padding-left: 0.5rem;
	border-left: 5px solid orange;
}

.container {
	max-width: 100%;
	margin: 2rem auto;
}

.gallery {
	display: flex;
flex-flow: row wrap;
	justify-content: center;
	border: 2px solid #6495ed;
	border-radius: 12px;
}

.gallery_img {
	width: 100%;
	height: 100%;
	padding: 15px;
	flex: 0 0 auto;
}

.gallery a:focus-visible img,
.gallery a:hover img {
	border: 6px solid teal;
}

.vidContainer {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px;
}

.centered {
	position: relative;
	left: 50%;
	transform: translate(-50%, 0%);
}

footer {
	margin: 20px;
	text-align: center;
}

.siteMap {
	list-style-type: none;
	text-align: center;
}

.siteMap li a {
	color: #fff;
}

.compTitle {
	margin-top: 2rem;
	margin-bottom: 0.75rem;
}
h2.compTitle {
	font-size: 1.6em;
}

h3.compTitle {
	font-size: 1.3em;
}

