I tried setting two different styles for a website using @media. But it always loads the desktop view no matter if I use a phone or a computer.
/* desktop screen */
@media (min-width: 801px){
content desktop
}
/* mobile screen */
@media (max-width: 800px){
content mobile
}
What have I done wrong?