body {
  background: #ffffff;
  color: #000000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

@font-face {
  font-family: "Megrim";
  src: url("/assets/fonts/Megrim-Regular.ttf");
}
@font-face {
  font-family: "FiraCodeNF";
  src: url("/assets/fonts/FiraCode-Regular-NerdFontComplete.ttf");
}
html,
body {
  font-family: "FiraCodeNF", "FiraCode", "Fira", Arial, Helvetica, sans-serif;
  background-color: black;
  color: white;
  margin-top: 10;
  margin-bottom: 10;
  margin-left: 0;
  margin-right: 0;
  min-height: 100vh;
}

canvas {
  display: block;
}

pre code {
  font-family: "FiraCodeNF", "FiraCode", "Courier New", Courier, monospace;
}

.header, .footer {
  width: 100%;
  text-align: center;
}
.header a, .footer a {
  text-decoration: none;
  color: #fff;
}
.header a :hover, .footer a :hover {
  text-decoration: line-through;
}

.footer {
  padding-top: 10em;
  padding-bottom: 1em;
}

.header-row, .footer-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0px;
}

#signature {
  margin-left: 4em;
}

#nav-bar, #contact-bar {
  font-family: "Megrim", Arial, Helvetica, sans-serif;
  font-size: 14pt;
  line-height: 10pt;
}
#nav-bar ul, #contact-bar ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
}
#nav-bar li, #contact-bar li {
  margin-left: 12px;
  margin-right: 12px;
}
#nav-bar a, #contact-bar a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5019607843);
  fill: rgba(255, 255, 255, 0.5019607843);
}
#nav-bar a :hover, #contact-bar a :hover {
  text-decoration: none;
  color: white;
  fill: white;
}

#title {
  font-family: "Megrim", Arial, Helvetica, sans-serif;
  font-size: 46pt;
  margin-top: 10px;
  margin-bottom: 10px;
}

#main-column {
  margin-left: auto;
  margin-right: auto;
  padding-left: 1em;
  padding-right: 1em;
  min-width: none;
  max-width: 36em;
}
#main-column a {
  text-decoration: underline;
  color: #fff;
}

.poem span {
  display: block;
  padding-left: 3em;
  text-indent: -3em;
  margin-bottom: -1em; /* negative margin to remove space between lines */
}

/* For stanza breaks */
.poem p {
  margin-bottom: 2em; /* larger space between stanzas */
}

.centered-content {
  display: flex;
  justify-content: center;
}

.iframe-wrapper {
  width: 100%; /* Allow the wrapper to take full width of the container */
}

.centered-iframe {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/*# sourceMappingURL=main.css.map */