@media screen and (max-width: 1000px){
 p {
   color: red;
 }
}
@media screen and (max-width: 800px){
  p {
   color: blue;
 }
}
@media screen and (max-width: 500px){
  p {
    color: green;
  }
 
}