@charset "UTF-8";
/* CSS Document for project1
Author: Andrew Addens
Course: ITWP 1050
File: media.css */

@media screen and (max-width: 1920px) {
    h1 {
        background-color: #ff9900;
    }   
}

@media screen and (max-width: 1200px) {
    h1 {
        background-color: #ff9900;
    }   
}

@media screen and (max-width: 980px) {
    h1 {
        background-color: #ffcc66;
    }   
}
@media screen and (max-width: 750px) {
    h1 {
        background-color: #336699;
    }   
}
@media screen and (max-width: 540px) {
    h1 {
        background-color: #cccccc;
    }   
}
@media screen and (max-width: 380px) {
    h1 {
        background-color: #eeeeee;
    }   
}

