@import url(https://fonts.googleapis.com/css?family=VT323); /*Import font used for the on-video HUD*/

body{
	font-family: sans-serif;
	margin: 0px;
}
header{
	background: black;
	color: white;
	font-size: 48px;
	text-align: center;
	margin-bottom: 50px;
}

#PlayerContainer{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	flex-direction: row;
	width: 80%;
	margin: auto;
	align-self: center;
}
#videoOut{
	max-width: 70vw;
}
#videoOutContainer{
	position: relative;
}
#buttonArray{
	align-self: center;
	text-align: center;
	margin: 0px 20px;
}
#buttonArray input{
	margin: 3px;
	width: 70px;
}

.HUD{
	font-family: 'VT323', monospace;
	color: #00FF00;
	font-size: 48px;
	z-index: 1;
	filter: blur(1px);
}
#videoChannelDisp{
	position: absolute;
	right: 40px;
	top: 20px;
}
#videoVolumeBars{
	position: absolute;
	bottom: 20px;
	left: 40px;
}
#videoVolumeDisp{
	position: absolute;
	bottom: 20px;
	right: 40px;
}