/* 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." */

body
{
  background-color: white;
  color: black;
  font-family: Verdana;
}
img {
  max-width: 100%; /* Prevents images from overflowing containers */
  height: auto;
}

.fixed-container1 {
  width: 300px;           /* Locks container to a specific pixel size */
  font-size: 24px;        /* Prevents font size adjustments */
  white-space: normal;    /* Prevents text from wrapping to new lines */
}

.fixed-container2 {
  width: 300px;           /* Locks container to a specific pixel size */
  font-size: 16px;        /* Prevents font size adjustments */
  white-space: normal;    /* Prevents text from wrapping to new lines */
}