@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: Zoe Griffith
   Date:   12/5/25

   Filename: ws_media.css

*/

/* VideoPlayer Styles */
video {
    display: block;
    width: 90%;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: auto;
    margin-right: auto;
}
@media only screen and (min-width: 521px) {
    video {
        width: 360px;
        float: right;
        margin: 10px;
    }
}


/* Track Styles */
::cue {
    background: rgba(255,255,255,0.8);
    font: 1.3em sans-serif;
}

