@charset "utf-8";

/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 8
   Case Problem 1

   Rhetoric in the United States Styles for Media
   Author: Alyssa Milinkovich
   Date:   11/20/2023

   Filename: ws_media.css

*/

/* VideoPlayer Styles */

video {
	display: block;
	width: 90%;
	margin-bottom: 5px;
	margin-top: 5px;
	margin-right: auto;
	margin-left: auto;
}

@media screen and (min-width: 521px) {
	video {
		width: 360px;
		float: right;
		margin: 10px;
	}

}


/* Track Styles */


caption {
	font-size: 1.3em;
	font-family: sans-serif;
	color: rgb(221,128,160);
	background-color: rgba(255,255,255,0.8);
}