Device Width plus Initial Scale

<meta name="viewport" content="width=device-width, initial-scale=1.0">
@viewport {
  width: device-width;
  zoom: 1;
}
body {
  background: red;
}

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