Why Responsive Design?
With the variety of devices available today, responsive design ensures your website looks good on phones, tablets, and desktops.
Media Query Example
@media (max-width: 600px) {
body {
background-color: lightgray;
}
}
This CSS will change the background color on small screens.