body {
  margin: 0;
  padding: 0;
}

/* .content {
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Cochin, Georgia, Times, 'Times New Roman', serif;
  color: #fe7f24;
} */

.main-content {
  height: 100vh;
  width: 100vw;
  background-color: black;
}

@font-face {
  font-family: 'evangelion';
  src: url('fonts/NIS-JTC-Win-M9.ttf') format('truetype');
}
.eva {
  font-family: 'evangelion';
  font-size: 50px;
  margin-top: 0px;
  margin-left: -20px;
  letter-spacing: -2px;
  color: #fe7f24;
  overflow: hidden;
  white-space: nowrap;

}

.eva span {
  display: inline-block;
  animation: marquee 50s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.jeremiah-mark {
  font-size: 20px;
  font-family: 'evangelion';
  color: #fe7f24;
  /* animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite; */
}

.subtext {
  display: flex;
  justify-content: center;
  align-items: center;
}

.typewriter {
  text-align: center;
}
/* The typing effect */
.typewriter p {
  display: inline-block;
  margin: 0 auto;
  border-right: .15em solid orange;
  white-space: nowrap;
  overflow: hidden;
  letter-spacing: .15em;
  animation: typing 2s steps(15, end), blink-caret .75s step-end infinite;
}

/* The typing effect */
@keyframes typing {
  from { width: 0 }
  to { width: 21ch } 
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: orange }
}