media and query code example
Example 1: media query
@media only screen and (max-width: 800px) {
body {
background-color: ; /*your color*/
}
}
Example 2: minimum width of different devices in html
<meta name="viewport" content="width=device-width,initial-scale=1">