html, body {
  margin: 0;
  background: black;
  color: white;
  font-family: monospace;
  min-height: 100vh;
  text-align: left;
  box-sizing: border-box;
}

h1 {
  font-size: 4rem;
  margin: 0;
  text-align: left;
}

h2 {
  font-size: 1.5rem;
  margin: 0.5rem 0 2rem;
  font-weight: normal;
  text-align: left;
}

.entries {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 800px;
}

a.button {
  display: inline-block;
  margin: 0;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  color: white;
  background: black;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid white;
  transition: all 0.3s ease-in-out;
  width: fit-content;
}

a.button:hover {
  color: black;
  background: white;
  border: 1px solid black;
}

.hamburger:hover span {
  background: black;
}

form {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

input {
  padding: 1rem;
  font-size: 1.2rem;
  background: black;
  border: 1px solid white;
  color: white;
  font-family: monospace;
}

input:focus {
  outline: none;
  border-color: #666;
}

button {
  display: inline-block;
  margin: 0;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  color: white;
  background: transparent;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid white;
  transition: all 0.3s ease-in-out;
  font-family: monospace;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

button:hover {
  color: black;
  background: white;
  border-color: black;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

button.loading {
  cursor: wait;
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.2);
}

button.loading:hover {
  transform: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  box-shadow: none;
}

button .loading-indicator {
  display: none;
}

button.loading .loading-indicator {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  pointer-events: none;
}

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

@keyframes loading-pulse {
  0% { opacity: 0.3; }
  50% { opacity: 0.7; }
  100% { opacity: 0.3; }
}

#invokeForm {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.p0 {
  padding: 0;
}

.p1 {
  padding: 1rem;
}

.p2 {
  padding: 2rem;
}

.scroll {
  overflow-y: scroll !important;
}

.content {
  width: 100vw !important;
}