/*main content*/
body {
  background-image: url("startile1_drk.png");
  font-family: monospace;
  color: #ffffff;
}

header {
  text-align: center;
}

nav {
  margin: 0 auto;
  text-align: center;
  vertical-align: middle;
  line-height: 50px; /*allows vertical-align to work, same size as height*/
  font-size: 150%;
  width: 500px;
  height: 50px;
  background-image: url("navbox.png");
  background-size: cover
}

/*link styling*/
a:link {
  color: #ffc526;
  text-decoration: none; /*removes underline*/
}
a:visited {
  color: #74990e;
  text-decoration: none;
}
a:hover {
  color: #fffcde;
  text-decoration: none;
}
a:active {
  color: #ffffff;
  text-decoration: none;
}