/* /videos/CT/styles.css */
*:focus {outline: none;} /* prevents outline on clicked items */
* { /* reset */
	padding:0;
	margin:0;
	box-sizing:border-box;
}
body {
	background-color:#eff;
	font-family:sans-serif;
	font-size:24px;
	color: #007;
}
#main {
	margin: 0 auto;
	text-align: center;
}
#head {
	display:flex;
	padding-top:5px;
	justify-content:space-around;
	align-items: center;
}
#head div {
	color:blue;
	font-style:italic;
	font-size:1.4em;
	font-family:serif;
	letter-spacing: 1px;
}
#head img {
	width:60%;
}
#videos {
	display:flex;
	flex-wrap:wrap;
	justify-content: space-around;
}
.item {
	cursor:pointer;
}
.caption {
	margin: -5px 0 15px 0;
	font-size: 18px;
}
#player {
	display:none;
	width:100%;
}
#head div {
	cursor:pointer;
}

@media screen and (orientation:landscape) {
	#main {
		width:950px;
		font-size:28px;
	}
}
