@keyframes diagonalScroll {
  0% {
    background-position: 0 0, 0 50px, 50px -50px, -50px 0px;
  }
  100% {
    background-position: 100px 100px, 100px 150px, 150px 50px, 50px 100px;
  }
}

@keyframes bounce {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(12px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@font-face {
  font-family: 'Dreamcast';
  src: url(/fonts/dreamcast.ttf) format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'cs';
  src: url(/fonts/comicsans.ttf) format('truetype');
  font-style: normal;
}


body {
  margin: auto;
  width: 100vw; height: 100vh;
  
  background-color: #ececec;
  background-image: 
    linear-gradient(45deg, #e1e1e1 25%, transparent 25%), 
    linear-gradient(-45deg, #e1e1e1 25%, transparent 25%), 
    linear-gradient(45deg, transparent 75%, #e1e1e1 75%), 
    linear-gradient(-45deg, transparent 75%, #e1e1e1 75%);
  background-size: 100px 100px;
  background-position: 0 0, 0 50px, 50px -50px, -50px 0px;
  animation: diagonalScroll 6s linear infinite;
}

.mainbox {
  width: 100%;
  height: auto;
  max-width: 870px;
  
  background-color: #f29750;
  border: solid white 6px;
  box-shadow: 0 0 6px -2px #2d2d2d;
  
  margin: 1vh auto;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

hr {
  border: 4px solid white;
  margin-bottom: -4px;
}

.wrapper {
  width: 100%;
  height: auto;
}

.titlewrapper {
  width: 100%;
  height: auto;
  background-color: #f29750;
  background-image: 
    linear-gradient(45deg, #d97b32 25%, transparent 25%), 
    linear-gradient(-45deg, #d97b32 25%, transparent 25%), 
    linear-gradient(45deg, transparent 75%, #d97b32 75%), 
    linear-gradient(-45deg, transparent 75%, #d97b32 75%);
  background-size: 100px 100px;
  background-position: 0 0, 0 50px, 50px -50px, -50px 0px;
  animation: diagonalScroll 6s linear infinite;
  text-shadow: 0px 0px 2px white;
}

.dc {
  margin: auto;
  margin-top: 18px;
  height: 128px; width: 144px;
  display: flex;
  filter: brightness(100);
  /*animation: rotate 6s infinite linear;*/
}

.title {
  font-family: Dreamcast;
  color: white;
  font-size: 42px;
  text-align: center;
  margin: 0;
}

.title > img {
  width: 84%;
}

.textbody {
  font-size: 18px;
  color: white;
  font-family: cs;
  text-align: left;
  margin: 12px 30px;
  padding: 18px 0px;
  line-height: 30px;
  letter-spacing: 2px;
}

.textbody > a {
  color: #c9f9ff;
  transition: 200ms ease all;
}

.textbody > a:hover {
  letter-spacing: 4px;
}

.textbody > img {
  width: 60%;
  padding: 24px 0px;
}

.directorybox {
  width: 100%;
  height: 120px;
  display: flex;
  flex-direction: row;
}

.directorybutton {
  width: 33.33%; height: 100%;
  transition: 200ms ease all;
  display: flex; justify-content: center;
}

.directorybutton:hover {
  background-color: white;
  cursor: pointer;
}

.directory {
  font-size:30px;
  font-weight: bold;
  text-transform: uppercase;
  margin: auto;
  line-height: 72px;
  letter-spacing: 3px;
  font-family: cs;
  color: white;
}

.directorybutton:hover > .directory {
  color: #f29750;
}

h1 {
  font-size: 32px;
  font-family: Dreamcast;
  letter-spacing: 24px;
  line-height: 78px;
  text-align: center;
  color: white;
  padding-bottom: 0px;
  margin-bottom: 0;
  text-shadow: 0 2px 3px #ffe3cc;
}

h2 {
  color: white;
  text-align: center;
  margin: 0px;
  font-family: Dreamcast;
  letter-spacing: 6px;
  font-size: 16px;
  text-shadow: 0 1px 3px #ffe3cc;
  transition: 200ms ease all;
}

h2 > a {
  text-decoration: none;
}

h2:hover {
  scale: 109%;
  text-decoration: underline;
}

.step {
  font-weight: bold;
  text-decoration: underline;
}

.disclaimer {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
  color: white;
  font-family: cs;
  text-align: center;
  padding: 0 36px;
  letter-spacing: 2px;
}
