/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
   
   img { max-width: 100%; height: auto; }
   
   /* Styles for all devices (Mobile First) */
body { font-size: 16px; }

/* Styles for tablets and larger (768px and up) */
@media screen and (min-width: 768px) {
  .container { display: flex; }
}

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}