/* style.css */
/*
>= 900px, show large-background.jpg
> 500 px and <900x: yellow background
<= 500px, show large-background.jpg
*/
body {
background-color: yellow;
}
@media screen and (min-width: 900px) {
body {
background: url('./large-background.jpg') no-repeat center center fixed;
background-size: cover;
}
}
@media screen and (max-width: 500px) {
body {
background: url('./large-background.jpg') no-repeat center center fixed;
background-size: cover;
}
}