/* 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 {
  color: white;
  font-family: Verdana;
  
  overflow-x: hidden;
  background: #000;
  
  margin: 0;
  padding: 0;
}

#head {
  color: white;
  font-family: Verdana;
  
  overflow-x: hidden;
  background: #20202d url("tile_head.gif") repeat;
  height: 100%;
  width: 100%;
  animation: slide 4s linear infinite;
}

#bnb {
  color: white;
  font-family: Verdana;
  
  overflow-x: hidden;
  background: #20202d url("tile_bnb.gif") repeat;
  height: 100%;
  width: 100%;
  animation: slide 4s linear infinite;
}

@keyframes slide{
  from{
      background-position: 0 0;
  }
  to{
      background-position: 256px 256px;
  }
}

/* unvisited link */
a:link {
  color: cyan;
}

/* visited link */
a:visited {
  color: cyan;
}

/* mouse over link */
a:hover {
  color: white;
}

/* selected link */
a:active {
  color: blue;
}

table, th, td {
  padding: 4px;
  margin: 4px;
  border: 4px outset black;
  border-spacing: 0;
  border-collapse: separate;
  border-radius: 0px;
  background-color: grey;
}

#header {
  height: 200px;
}

#main {

}

#content {

}