/*heya!*/
/*idk how useful most of this will be to anyone else but if you feel like you can get something out of it feel free to copy*/

a:link {
  color: #008080
}

a:visited {
  color: #00b2b2
}

body {
  background-color: #090411;
  color: #eee;
  font-family: Verdana;
  line-height: 1.6;
  margin: 12px 16px 12px;
  text-align: center;
}

p {
  margin: 6px;
}

/*--divs--*/
/*boy i sure do love boxes*/

/*for most (shorter) bits of text*/

.bloc {
  background: #131019;
  border: 4px solid #008080;
  margin: 10px auto 20px;
  padding: 6px;
  width: 800px;
}

/*for longer chunks of text, like writeups or the trivia page*/

.widebloc {
  background: #131019;
  border: 4px solid #008080;
  margin: 10px auto 20px;
  padding: 0px 10px;
  max-width: 1000px;
}

/*this one is for the 404 page or anything else that's just a single square and nothing else*/

.singlebloc {
  background: #131019;
  margin: 20% auto 20px;
  width: 800px;
  border: 4px solid #008080;
  padding: 6px;
}

/*--table stuff--*/

table {
  border-collapse: collapse;
  border: 4px solid #008080;
  display: inline-block;
  text-align: center;
}

th, td {
  border-collapse: collapse;
  height: 50px;
  min-width: 40px;
}

td {
  border: 2px solid #008080;
}

/*these are for the "list" style tables, like on the keyboard page*/

.list {
  margin: 0 auto;
  padding: 0 1em;
}

.list td {
  border: 0;
  border-bottom: 1px solid #008080;
  padding: 0 1em;
}