/* 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 {
  text-align: center;
  text-shadow: 
  1px 1px  5px black,
  -1px -1px 5px black,
  1px -1px 5px black,
  -1px 1px 5px black,
  1px 1px black,
  -1px -1px black,
  1px -1px black,
  -1px 1px black;
  color: White;
  font-family: Verdana;
  background-image: url('/arcadeCarpet.png');
}
a:link{
  color: violet;
  }
a:hover{
  color:pink;
  }
ul{
  padding: 0;
  margin:0;
  Display:inline-block;
  text-align: left;
  width: 90px;
  }
ul li{
  padding-left:8px;
  list-style:none;
  margin-bottom:6px;
  text-align:center;
  text-indent: -12px;
  }
.column{ 
  
  width:50%; /*columns will default to using 50% of the screen width maximum.*/
  display: table-cell;/*Columns with match the length of the longest in the row.*/
}
  /* ensures tables are the same length alongside eachother */
.navbar{
  }
  