@font-face {
  font-family: EBGaramond-ExtraBold;
  src: url(EBGaramond-ExtraBold.ttf);
}


body {
  min-width: 100%;
  min-height: 100%;
  margin: 0px;
  padding: 0px;
	opacity: 0;
	background-color: #000000;
	background-image: url("/static/img/black-belt-texture.png");
	background-size: contain;
  animation: fadeIn 2s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#back-links {
  position: absolute;
  left: 25%;
  right: 25%;
  min-height: 50px;
  max-height: 50px;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  z-index: 0;
}

#page-content {
  margin-top: 30px;
  margin-bottom: 30px;
  display: block;
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
}



