/* 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 {
  color: gold;
  font-family: 'P22 Way Out West', Verdana, sans-serif;
  font-size: 64px;
  font-weight: normal;
  text-shadow: 4px 4px 2px #00000080;
  margin: 16px auto 16px;
}

h2 {
  color: gold;
  font-family: 'P22 Way Out West', Verdana, sans-serif;
  font-size: 40px;
  font-weight: normal;
  text-shadow: 4px 4px 2px #00000080;
  margin: 16px auto 16px;
}

body, a {
  background-image: url(lazlo_intro_pattern.png);
  background-color: #278867;
  background-position: center center; 
  background-attachment: fixed;
  color: navajowhite;
  font-family: Palatino, Georgia, serif;
  font-weight: 100;
  text-align: center;
  width: 800;
  cursor: url(lazlo_style_cursor.png), auto;
}

@font-face {
    font-family: 'P22 Way Out West';
    src: url('Fonts/b1df0845defe6f44b43e757ffb725e65.woff2#iefix') format('woff2'),
        url('Fonts/b1df0845defe6f44b43e757ffb725e65.woff#iefix') format('woff');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Palatino';
    src: url('Fonts/Palatino-Roman.woff2#iefix') format('woff2'),
        url('Fonts/Palatino-Roman.woff#iefix') format('woff');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Palatino';
    src: url('Fonts/Palatino-Bold.woff2#iefix') format('woff2'),
        url('Fonts/Palatino-Bold.woff#iefix') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Palatino';
    src: url('Fonts/Palatino-Italic.woff2#iefix') format('woff2'),
        url('Fonts/Palatino-Italic.woff#iefix') format('woff');
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'Palatino';
    src: url('Fonts/Palatino-BoldItalic.woff2#iefix') format('woff2'),
        url('Fonts/Palatino-BoldItalic.woff#iefix') format('woff');
    font-weight: bold;
    font-style: italic;
}

p {
  font-family: Palatino, Georgia, serif;
  text-align: center;
}

b {
  font-family: Palatino, Georgia, serif;
  font-weight: bold;
  text-align: center;
}

i {
  font-family: Palatino, Georgia, serif;
  font-style: italic;
  text-align: center;
}


ul {
  color: navajowhite;
  text-align: left;
  list-style-position: inside;
}

table {
  list-style: circle;
  color: navajowhite;
  text-align: center;
  border-style: dashed;
  border-color: darkred;
  border-width: 4px;
  background-color: #c05838;
  border-collapse: collapse;
  box-shadow: 8px 8px 2px #00000080;
  outline: solid 4px #c05838;
}

td, tr {
  list-style: circle;
  color: navajowhite;
  text-align: center;
  border-style: dashed;
  border-color: darkred;
  border-width: 4px;
  background-color: #c05838;
  border-collapse: collapse;
}

th {
  list-style: circle;
  color: darkred;
  font-family: 'P22 Way Out West';
  font-size: 32px;
  font-weight: normal;
  text-align: center;
  border-style: dashed;
  border-color: darkred;
  border-width: 4px;
  background-color: goldenrod;
  border-collapse: collapse;
  padding: 4px;
}

a:link {
  color: white;
  background: none;
  text-decoration: none;
  cursor: url(lazlo_style_cursor2.png), auto;
}

a:visited {
  color: white;
}

img {
  filter: drop-shadow(4px 4px 2px #00000080);
}

div {
  border-style: dashed;
  border-color: darkred;
  border-width: 4px;
  background-color: #c05838;
  border-collapse: collapse;
  padding: 0px 4px 0px;
  outline: solid 4px #c05838;
  box-shadow: 8px 8px 2px #00000080;
}