body {
  background-color: #121212;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16;
  line-height: 1.5;
  color: #12FF12;
  margin: 0;
}

header {
  background-color: #12FF12;
  font-weight: bold;
  color: #2E2E2E;
  display: flex;
  justify-content: space-between;
  padding: 16px 32px;
}

h1 {
  font-size: 32px;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 32px;
}

.header-buttons {
  display: flex;
  gap: 32px;
}

.header-buttons a {
  background-color: #2E2E2E;
  border-bottom: none;
  padding: 16px 32px;
}

.header-buttons a:hover {
  background-color: #494949;
  color: #12FF12;
}

nav {
  background-color: #2E2E2E;
  display: flex;
  justify-content: space-between;
}

.left-nav,
.right-nav {
  display: flex;
}

.left-nav a,
.right-nav a {
  flex: 1;
  white-space: nowrap;
  text-align: center;
  border-bottom: none;
  padding: 16px 32px;
}

.left-nav a:hover,
.right-nav a:hover {
  color: #12FF12;
  background-color: #494949;
}

.left-nav a.active,
.right-nav a.active {
  background-color: #494949;
  font-weight: bold;
}

.text-container {
  padding: 0 32px;
}

h2 {
  font-size: 24px;
  font-weight: bold;
  margin: 24px 0;
}

p {
  margin: 16px 0;
}

hr {
  background-color: #12FF12;
  width: 100%;
  height: 1px;
  border: none;
  margin: 16px 0;
}

ul {
  list-style: none;
  padding: 0;
}

ul li::before {
  content: "> ";
}

a {
  color: #12FF12;
  text-decoration: none;
  border-bottom: 1px dotted #12FF12;
  cursor: pointer;
}

a:hover {
  background-color: #12FF12;
  color: #121212;
}

.image-container {
  text-align: center;
  margin: 16px 0px;
}

.image-container img {
  width: 100%;
  height: auto;
}

.image-caption {
  font-style: italic;
  margin: 16px 0px;
}

#animated-text {
  border-right: 4px solid #2E2E2E;
  animation: blink 0.6s step-end infinite;
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

@media (max-width: 1073px) {
  body {
    min-width: 698px;
  }

  nav {
    flex-direction: column;
  }
}