/* /magic/videos/video.css */

*:focus {outline: none;} /* prevents outline on clicked items */
* { /* reset */
	padding:0;
	margin:0;
	box-sizing:border-box;
}
body { /* prevents text selection */
	-webkit-user-select: none; /* Safari 3.1+ */
	-moz-user-select: none; /* Firefox 2+ */
	-ms-user-select: none; /* IE 10+ */
	user-select: none; /* Standard syntax */
}
body {
	background-color:black;
	font-family:sans-serif;
}
#head {
	padding-top: .5vw;
	display:flex;
	align-items: center;
	justify-content: space-between;
}
#head div img {
	width:40%;
	display:block;
	margin:0 auto;
}
#title {
	font-style: italic;
	color:#cff;
	font-size:24px;
}
#box {
	display:flex;
	justify-content: center;
	margin-top:20px;
}
#box video {
	width:90vw;
	max-width:1280px;
}
