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

h1 {
  text-align: center;
  <FONT FACE="Signet Roundhand ATT"; 
  SIZE="+7";
  COLOR="Maroon";
}

body {
  background: url("https://geocities.restorativland.org/Tokyo/1843/SKY.JPG") repeat; /* tiles the image like 90s sites */
  background-size: auto; /* keeps the original size of the image */
  background-position: top left; /* starts tiling from the top-left corner */
  background-attachment: scroll; /* moves with the page (default) */
  font-family: "Times New Roman", Times, serif; /* sets the 90s serif font for the site */
  margin: 0; /* optional, removes default body margin */
  padding: 0; /* optional, removes default body padding */
}