/* 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 {
  position: absolute;
    top: 0;
    left: 200px;
  background-color: rgb(0,0,0);
  color: rgb(255,255,0);
  font-size: 14px;
  font-weight: bold;
  font-family: helvetica, "Times New Roman";
}

body {
    background: black url(https://cdn.pixabay.com/animation/2024/07/23/19/52/19-52-56-478_512.gif) repeat top right;
}

h1, h2, h3 {
    letter-spacing: 0.5em;
    word-spacing: 2em;
    line-height: 1.5;
    text-align: center;
}
h1 {
    font-size: 4em;
    background-color: rgb(255,255,0);
    color: rgb(0,0,0);
    font-family: "Times New Roman";
    text-transform: uppercase;
    font-weight: bold;
    margin: 20px;
    padding: 40px;
}

h2 {
    font-size: 1.5em;
    margin: 20px;
    padding: 40px;
}

h3 {
  text-align: center;
  font-size: 2em;
  border-style: dotted;
    border-width: 10px;
    border-left-width: 10px;
    border-right-width: 10px;
    border-color: red;
}

h4 {
  text-align: center;
  font-size: 2em;
}

h5{
  font-size: 1.5em;
}

h6{
   text-align: center;
  font-size: 2em;
  margin: 20px;
    padding: 40px;
  border-style: inset;
    border-width: 10px;
    border-left-width: 10px;
    border-right-width: 10px;
    border-color: red;
}

p {
    font: 14px/1.5 "Times New Roman", times, serif;
    padding: 30px 10px;
    border: 1px black solid;
    border-width: 1px 5px 5px 1px;
    border-color: red green blue yellow;
    margin: 10px 50px;
}
  
table{
  text-align: center;
  margin: 20px;
  padding: 40px;
}

#top {
  font-size: 2em;
  text-transform: uppercase;
  font-family: "Times New Roman";
  margin: 20px;
  padding: 40px;
    color: blue;
    background-color: yellow;
}

li { display: block }

.intro {
    color: red;
    font-weight: bold;
}

a {
    text-decoration: none;
}

td:hover {
    text-decoration: none;
    color: blue;
    background-color: yellow;
}

td:active {
    text-decoration: none;
    color: red;
    background-color: yellow;
}

strong {
    text-transform: uppercase;
}

em {
  font-style: italic;
  color: rgb(255,175,0);
}

#navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 200px;
}

#content {
    margin-left: 200px;
}

#footer {
    clear: both;
}
