/* 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: pink; /*sets background to pink*/
  color: #DC143C; /*sets font color to crimson*/
  font-family: Courier New; /*chooses what font looks like*/
}
  div { /*box settings*/
      width: 300px;
      height: 50px;
      border: 15px solid white;
      color: #DC143C;
      padding: 50px;
      margin: 20px;
}
