@charset "utf-8";

/*
	New Perspectives on HTML5 and CSS3, 8th Edition
	Chapter 8
	Case Problem 1

	Rhetoric in the United States Styles for Media

	Author: Chris LaFleur
	Date: 11/26/23
*/

/* VideoPlayer Styles */

video{
	display: block;
	width: 90%;
	margin: 5px auto;
}

@media only screen and (min-width: 521px){
	video{
		width: 360px;
		float: right;
		margin: 10px;
	}
}


/* Track Styles */

::cue{
	font: 1.3em sans-serif;
	color: rgb(221, 128, 160);
	backround-color: rgba(255, 255, 255, 0.8);
}