body {
  font-family: monospace;
  font-size: 10pt;
  margin: 0;
  padding: 0;
  color: #000;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  text-align: center;
  box-sizing: border-box;
}

header {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 5px;
  background-color: #fff;
  z-index: 1000;
  white-space: nowrap;
}

header a, header span {
  text-decoration: none;
  color: #000;
  margin: 0 4px; /* Reduced margin for closer spacing */
  font-family: monospace;
}

header a:hover {
  text-decoration: underline;
}

.content {
  text-align: center;
  margin-top: 80px;
  width: 90%;
  max-width: 800px;
}
