/* ORIGINAL TASK PUPILS STARTED WITH
Full credit to code.org for task */
  
body {
  /*I changed the background from white to light pink*/
  background: #d2a1d3;
}
/*I changed the font to bold and the color to a dark pink*/
h1{
  font-weight: bold;
  color: #62475d;
}
/*I added a border and made the color into magenta*/
h3{
  border:2px solid #7f717b;
  color: #8a0073;
}
/*I changed the color to red and the font to Courier New and made the font bold*/
p {
  color: #ce4b4b;
  font-family:Courier New;
  font-weight:bold;
}