/* Restored original styling for The Ace of Blaze */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: 0;
}

body {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  background-color: #000;
  color: #fff;
}

/* Navigation links */
a {
  display: inline-block;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 24px;
  text-decoration: none;
  color: #fff;
}
a:visited {
  color: #fff;
}
a:active,
a:focus {
  color: #0c0;
  text-decoration: underline;
}
a:hover {
  color: #f00;
  text-decoration: underline;
}

.white {
  color: #fff;
}

h2 {
  font-size: 90px;
}
h3 {
  font-size: 35px;
}

ul {
  list-style: none;
  text-align: center;
  padding: 0;
}
ul li {
  display: inline-block;
  margin: 5px;
}

#wrapper {
  margin: 0;
}

#navigation {
  height: 250px;
  background: url("../images/theaceofblazebanner.png") center center no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;  /* Vertical center */
  align-items: center;      /* Horizontal center */
  text-align: center;
}

#content {
  text-align: center;
  padding: 30px 20px;
}

#box1,
#box3 {
  margin: 50px auto;
}

#box2 {
  margin: 30px auto 10px auto;
}

#footer {
  text-align: center;
  padding: 30px 0 50px 0;
  background-color: #fff;
  color: #000;
}