@import url(reset.css);

html {
    font-size: 62.5%;
}

body {
    font-family: verdana;
}

.vidWrapper {
    width: 100%; max-width: 600px;
    margin: 3rem auto;
}

.vidContainer {
    width: 100%;
    height: 0;
    position: relative;
    padding-bottom: 56.25%; /* 720/1280 = .5625 */
}

.vidContainer iframe, .vidContainer video {
    width: 100%; max-width: 100%;
    height: 100%; max-height: 100%;
    position: absolute;
    top: 0; left: 0;
}

/* Mobile styles under 600px */
@media screen and (max-width:599px) {
    body {
        background-image: repeating-linear-gradient(90deg, #234567, #234567 3px, #345678 3px, #345677 20px);
    }

    h1 {
        background-color: yellowgreen;
        padding: 1rem;
        text-align: center;
        font-weight: normal;
    }
}
/* End of mobile styles */

/* Mobile styles under 1400px */
@media screen and (min-width:600px) and (max-width:1400px) {
    body {
        background-color: green;
    }
}
/* End of mobile styles */