/* 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: white url(background.jpg) repeat;
  color: black;
  font-family: Verdana;
}
h1 {
  color: pink;
  font-family: "Times New Roman";
  font-size: 40px;
  text-decoration: underline;
  text-align: center;
}
h2 {
  background-color: white;
  border-style: solid;
  border-width: 3px;
  border-left-width: 3px;
  border-right-width: 3px;
  border-color: pink;
  font-family: "Comic Sans MS";
  color: navy;
}
h3 {
  font-family: "Comic Sans MS";
  color: navy;
  font-style: italic;
  font-size: 20px;
}
.box {
  width: 200px;
  height: 100px;
  border: 1px solid black;
  padding: 10px;
  margin: 10px;
}
