/* myStyle.css */
body {
 background-color: #FFFFFF;
 color: #000000;
}

@media screen and (min-width: 400px) {
  body {
    background-color: white;
  }
}

@media screen and (min-width: 800px) {
  body {
    background-color: lavender;
  }
}

@media screen and (min-width: 601px) {
  div.example {
    font-size: 2vw;
    font-family: Arial, Helvetica, Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  }
}

/* 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: 5vw;
    font-family: Arial, Helvetica, Georgia, Times, 'Times New Roman', serif;
  }
}
@media only screen and (orientation: landscape) {
  body {
    background-color: lightblue;
  }
}

img {
  width: 100%;
  height: auto;
}

p {
 background-color: #FFFFFF;
 color: #000000;
 
}