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

header {
  padding: 80px; /* some padding */
  text-align: center; /* center the text */
  background: #1abc9c; /* green background */
  color: white; /* white text color */
}
  #borderimg {
  border: 10px solid;
  border-image: url(TestBorder.png) round;
}
body {
  background-color: white;
  color: black;
  font-family: Verdana;
}