body {
	background: #380861;
	margin: 0;
}
#container {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
#sound {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 1;
	width: 50px;
	height: 50px;
	background: rgba(53, 120, 129, .5) url(/img/muted.png) no-repeat center / 20px;
	outline: none;
	border: none;
	cursor: pointer;
	padding: 0;
	margin: auto;
	border-radius: 50%;
	border: 2px solid #fff;
	-webkit-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
	z-index: 1;
}
#sound:hover {
	background-color: rgba(53, 120, 129, .8);
	-webkit-filter: drop-shadow(0 0 10px rgba(255, 255, 255, .5));
	filter: drop-shadow(0 0 10px rgba(255, 255, 255, .5));
}
#play {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	width: 80px;
	height: 80px;
	background: rgba(53, 120, 129, .5) url(/img/play.png) no-repeat left 55% center / 25px;
	outline: none;
	border: none;
	cursor: pointer;
	padding: 0;
	margin: auto;
	border-radius: 50%;
	border: 3px solid #fff;
	-webkit-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}
#play:hover {
	background-color: rgba(53, 120, 129, .8);
	-webkit-filter: drop-shadow(0 0 50px rgba(255, 255, 255, .5));
	filter: drop-shadow(0 0 50px rgba(255, 255, 255, .5));
}
#video {
	height: 100%;
	width: 100%;
	right: 0;
	bottom: 0;
}
#play.hidden,
#sound.hidden {
	opacity: 0;
	visibility: visible;
	z-index: 0;
}
@media only screen and (min-width: 576px) {
	#play {
		width: 100px;
		height: 100px;
		background-size: 30px;
	}
}
@media only screen and (min-width: 768px) {
	#play {
		width: 120px;
		height: 120px;
		background-size: 35px;
		border-width: 5px;
	}
}
@media only screen and (min-width: 992px) {
	#play {
		width: 150px;
		height: 150px;
		background-size: 40px;
	}
}