@CHARSET "UTF-8";

body {
background-color: red;
}

@media screen and (orientation:portrait) and (max-width : 1000px),
handheld and (orientation:portrait) and (max-width : 1000px)
{
body {
background-color: orange;
}
}

@media screen and (orientation:portrait) and (max-width : 800px),
handheld and (orientation:portrait) and (max-width : 800px)
{
body {
background-color: yellow;
}
}

@media screen and (orientation:portrait) and (max-width : 767px),
handheld and (orientation:portrait) and (max-width : 767px)
{
body {
background-color: green;
}
}