body {
  margin: 1rem;
  font-family: monospace;
  background-color: #0d0d0d;
  color: #e0e0e0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100vh;
  text-align: center;
  overflow: hidden;
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  margin-top: 3rem;
}

h1::after {
  content: '_';
  animation: blink 2.5s infinite;
}

@keyframes blink {
  0%, 67% { opacity: 1; }
  67%, 70% { opacity: 0; }
  70%, 100% { opacity: 1; }
}

p {
  margin: 0.2rem;
}

.footer {
  margin-top: 4rem;
  font-size: 0.8rem;
  color: #666;
  background-color: #0d0d0d;
}

.subdomains {
  margin-top: 2rem;
}

a {
  color: #0fc;
  background-color: #0d0d0d;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.limerick {
  position: fixed !important;
  bottom: 10px !important;
  right: 10px !important;
  font-size: 0.8rem !important;
  text-align: right !important;
  color: #888;
  max-width: 50%;
  overflow-wrap: break-word;
  pointer-events: none;
}
