html body {
  height: 100%;
  margin: 0;
  font-family: "Fredericka the Great", cursive;
}

body {
  background: #000;
}

#banner {
  color: white;
  width: 100%;
  min-height: 50px;
  margin-bottom: 50px;
}

.title {
  margin: 0 auto;
  margin-bottom: 10px;
  text-align: center;
  box-sizing: border-box;
  font-size: 2.5em;
  padding-left: 20px;
}

.title span {
  border-bottom: 1px solid white;
}
.centerBanner {
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
  font-size: 2em;
}

.button {
  vertical-align: middle;
  margin: 0;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  font-family: inherit;
  font-size: 0.5em;
  cursor: pointer;
  color: white;
}

button:focus {
  outline: 0;
  box-shadow: 2px 2px rgba(255, 255, 255, 0.5),
    0 6px 20px 0 rgba(255, 255, 255, 0.19);
}

.button:hover {
  box-shadow: 2px 2px rgba(255, 255, 255, 0.5),
    0 6px 20px 0 rgba(255, 255, 255, 0.19);
}

.button:active {
  box-shadow: none;
}

.hide {
  display: none;
}

table {
  margin: 0 auto;
  border-collapse: collapse;
}

td {
  border: 1px solid white;
  width: 100px;
  height: 100px;
  color: white;
  text-align: center;
  font-size: 4em;
}

.top-grid {
  border-top: none;
}

.bot-grid {
  border-bottom: none;
}

.left-grid {
  border-left: none;
}

.right-grid {
  border-right: none;
}

@media screen and (min-width: 400px) {
  td {
    width: 150px;
    height: 150px;
  }
}

@media screen and (min-width: 1000px) {
  .title {
    vertical-align: top;
    float: left;
    width: calc(100% / 3);
    text-align: left;
    font-size: 2em;
  }

  .title span {
    border: none;
  }

  .centerBanner {
    float: left;
    width: calc(100% / 3);
    text-align: center;
  }
}
