body {
  background: black;
  font-family: 'spleen_32x64medium';
  color: rgb(175, 121, 44);
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
}

@font-face {
    font-family: 'spleen_32x64medium';
    src: url('spleen-32x64-webfont.woff2') format('woff2'),
         url('spleen-32x64-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

a {
  color: rgb(230 175 96);
}

p2 {
    font-weight: bold;
}

a:hover {
  text-shadow: 0 0 10px rgb(175, 121, 44), 0 0 20px rgb(175, 121, 44), 0 0 30px rgb(175, 121, 44),
   0 0 40px rgb(175, 121, 44);
}

.blink_me {
  animation: blinker 1s linear infinite;
  display:inline;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.bigbox {
  margin-left: 200px;
  margin-right: 200px;
  padding: 1px 16px;
  border: 5px double rgb(175, 121, 44);
  position: static;
}

.bigbox h2 {
  margin-bottom: 16;
}

.top-bar h4 {
  margin-left: 20px;
  display: inline;
}

.top-bar {
  border: 5px double rgb(175, 121, 44);
  margin-bottom: 16px;
  padding: 10px 16px;
}