Could you explain the distinction between max-width and min-width in media queries in HTML and CSS?
@media (min-width:480px) { /* styles for smartphones, Android phones, and landscape iPhone */ }
@media (min-width:600px) { /* styles for portrait tablets, portrait iPad, e-readers (Nook/Kindle), and landscape 800x480 phones (Android) */ }
@media (min-width:801px) { /* styles for tablets, landscape iPad, lo-res laptops, and desktops */ }
@media (min-width:1025px) { /* styles for big landscape tablets, laptops, and desktops */ }
@media (min-width:1281px) { /* styles for hi-res laptops and desktops */ }
@media (max-width:320px) { /* styles for smartphones, portrait iPhone, and portrait 480x320 phones (Android) */ }
@media (max-width:480px) { /* styles for smartphones, Android phones, and landscape iPhone */ }
@media (max-width:600px) { /* styles for portrait tablets, portrait iPad, e-readers (Nook/Kindle), and landscape 800x480 phones (Android) */ }
@media (max-width:801px) { /* styles for tablet, landscape iPad, lo-res laptops, and desktops */ }
@media (max-width:1025px) { /* styles for big landscape tablets, laptops, and desktops */ }
@media (max-width:1281px) { /* styles for hi-res laptops and desktops */ }