/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */



body {
  background-color: black;
  color: yellow;
  font-family: "Nextgen Unified", system-ui, sans-serif;
}

serif {
  font-family: "Nextgen Serif", serif;
}

cursive {
  font-family: "Nextgen Dialog", cursive;
}

monospace {
  font-family: "Nextgen Terminal", monospace;
}

@font-face {
  font-family: "Nextgen Unified";
  src: url("/fonts/NextgenUnified-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Nextgen Unified";
  src: url("/fonts/NextgenUnified-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Nextgen Unified";
  src: url("/fonts/NextgenUnified-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Nextgen Unified";
  src: url("/fonts/NextgenUnified-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: "Nextgen Unified";
  src: url("/fonts/NextgenUnified-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Nextgen Unified";
  src: url("/fonts/NextgenUnified-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: "Nextgen Serif";
  src: url("/fonts/NextgenSerif-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Nextgen Serif";
  src: url("/fonts/NextgenSerif-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Nextgen Dialog";
  src: url("/fonts/NextgenDialog-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Nextgen Dialog";
  src: url("/fonts/NextgenDialog-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Nextgen Terminal";
  src: url("/fonts/NextgenTerminal-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}


.logo {
    width: 170px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.construction-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.underconstruction {
    width: 800px;
    height: auto;
}

.comingsoon {
    text-align: center;
}