.body {
    backgroundcolor: red ;
}


/* If the screen size is 601px wide or more, set the font-size of <div> to 80px */


@media screen and (min-width: 601px) {
  
  maintext {
      width:50% ; 
      font-family:'Myriad Pro', Helvetica, Arial, sans-serif ; 
      font-weight:normal ; 
      font-size:100vw ;
    
  }
}

/* If the screen size is 600px wide or less, set the font-size of <div> to 30px */
@media screen and (max-width: 600px) {
  div.example {
    font-size: 30px;
  }
}

