/* 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-image: url("background.gif");
  background-repeat: repeat-y;
  background-size: 1600px auto;
  background-color: black;
  color: white;
  font-family: Arial;
}

p {
  margin: 20px 100px 10px 70px;
  font-family: Arial;
}

font-face {
  src: url(strasua.ttf);
}

font-face {
  font-family: monobold;
  src: url(monodb.ttf);
}

font-face {
  font-family: gothic;
  src: url(gothic.ttf);
}

font-face {
  font-family: gothicbold;
  src: url(gothicb.ttf);
}

font-face {
  font-family: chata;
  src: url(la-chata-normal.ttf);
}

h1 {
  margin: 50px 50px 20px 70px;
  font-size: 40px;
}

h2 {
  margin: 20px 150px 0px 70px;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

a:link {
  color: hotpink;
}

a:visited {
  color: red;
}

ul {
  margin: 20px 100px 20px 70px;
  font-family: Arial;
}

li {
  margin: 10px 100px 10px 70px;
  font-family: Arial;
}