/* 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." */
   
   /* a dot is used to signify a new class in CSS, which is important to make one section of text change font, color, etc. */

body {
  background-color: #665AC4;
  color: black;
  font-family: Verdana;
}
.redalert {
	color: red;
    font-size: 25pt;
}

.moretesting {
    font-family: 'Trebuchet MS', sans-serif;
    background-color: #E89595;
    color: #211C1C;
     background-image: url("PastelC.jpg");
  background-repeat: repeat-x;
}