'Problem with VSC , live server and media queries

simple video of my problem

My media queries wont work at all so I create the most simple test to show up my issue. but its work here with the snippet ... but not locally with VSC ... Why ? and how can I resolve it ?

body{
    background-color: aqua;
}

@media screen and (min-width: 480px) {
    body {
      background-color: lightgreen;
    }
  }
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="style.css">
    <title>Document</title>
</head>
<body>
    
</body>
</html>


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source