Device Width Only

<meta name="viewport" content="width=device-width">
@viewport {
  width: device-width;
}
body {
  background: red;
}

@media (min-width: 410px) {
  body {
    background: green;
  }
}