/*
black 000000
white FFFFFF
brown 6A3A11
teal 136F63
yellow F6BD60
*/

h1 {
	color: #000;
	border-bottom: 3px double #6A3A11;
	margin: 5px 0;
}
h2,h3 {
	color: #000;
	margin: 5px 0;
}
hr {
	border-top: 3px double #6A3A11;
}

dt {
	font-weight: bold;
}

.button-bar {
	margin-top: 10px;
}

button {
	height: 30px;
	border: 1px solid #000;
	padding: 0 10px;
	border-radius: 5px;
	background-color: #000;
	color: #FFF;
}
button:hover {
	background-color: #FFF;
	color: #000;
}

svg.signet {
	width: 50px;
	height: 50px;
}

#signet_start #path1 {
	fill: blue;
}
#signet_start #path2 {
	fill: blue;
}
#signet_end #path1 {
	fill: red;
}
#signet_end #path2 {
	fill: red;
}

#video-container {
	position: relative;
	display: inline-block;
	width: 100%;
}

#video-player {
	margin: 10px 0;
	border-radius: 10px;
	width: 100%;
	display: block;
}
#video-player:focus {
	outline: 2px solid #6A3A11;
	outline-offset: 4px;
}

#video-overlay {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(0,0,0,0.7);
	color: #FFF;
	padding: 10px 20px;
	border-radius: 5px;
	font-size: 2rem;
	font-weight: bold;
	text-shadow: 0 2px 4px rgba(0,0,0,0.8);
	opacity: 1;
	transition: opacity 0.5s ease-out;
	pointer-events: none; /* for the video to receive clicks */
	z-index: 10;
}
