CSS MEDIA QUERY PROPERTIES
Aside from
@media screen AND (...) { Which handles all media queries for devices with screens, so computers, mobile devices, etc. }
Another example of an @media is:
@media print AND (...) { This handles all media queries for when a web page is going to be printed on physical paper. }