body {
  background-color: #000000;
  color: #FFFFFF;
  font-family: sans-serif;
  margin: 0;
}
#gamediv {
  width: 1280px;
  height: 720px;
  margin: 0 auto;
}
.bg {
  background-size: 500%;
  background-repeat: repeat;
  background-position-y: top -580px;
  background-position-x: center;
  background-image: url("./media/Godot_v3.3.1-stable_win64_Ex6JIAng7V.png");
  background-attachment: fixed;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}
a {
  color: #FFF;
  text-decoration: underline;
}
a:hover {
  color: #F0F;
}
nav {
  margin: 10px 0;
}
nav ul {
  text-align: center;
  padding: 0;
}
nav a {
  display: inline-block;
  text-align: center;
  color: #6699FF;
  text-decoration: none;
  cursor: pointer;
}
nav li {
  display: inline-block;
  text-align: center;
  background-color: darkslategray;
  border: 3px solid #00aaff;
  padding: 5px;
  font-size: 20px;
  margin: 0 5px;
}
nav a:link {
  color: #ff00ff;
}
nav li:hover {
  background-color: #FF0;
}
nav li:active {
  background-color: #F0F;
}
nav li.active {
  background-color: #FFF;
}
section {
  display: none;
}
section.active {
  display: block;
}
.monogram {
  max-width: 640px;
}
.fullimage {
  flex: 1 0 calc(94%);
  display: flex;
  flex-wrap: wrap;
  align-content: stretch;
  margin: 11px -11px;
  width: 100%;
}
.flex-container {
  display: flex;
  flex-wrap: wrap;
  align-content: stretch;
  margin: 0 -15px;
}
.leftbox {
  flex: 0 0 calc(47%);
  padding: 11px;
  margin: 22px 11px;
  background-color: #111;
  border-radius: 11px;
  box-sizing: border-box;
  text-align: center;
  opacity: 95%;
}
.leftbox img {
  display: inline-block;
  vertical-align: top;
  margin: 5px;
}
.fullbox img {
  display: inline-block;
  vertical-align: top;
  margin: 5px; 
  max-width: 90%;
}
.fullbox {
  flex: 1 0 calc(94%);
  padding: 11px;
  margin: 11px 11px;
  background-color: #111;
  border-radius: 11px;
  box-sizing: border-box;
  text-align: center;
  opacity: 95%;
}
.legal {
  flex: 0 0 calc(94%);
  padding: 11px;
  margin: 11px 11px;
  border-radius: 11px;
  box-sizing: border-box;
  text-align: center;
  opacity: 95%;
  background: none;
}
.about-row {
  display: flex;
  align-items: stretch;
  margin: 0 -15px;
}
.about-left, .about-right {
  width: 50%;
  padding: 0 15px;
  box-sizing: border-box;
}
.about-right {
  display: flex;
  flex-direction: column;
}
.about-right .leftbox {
  flex: 1;
  margin: 10px 0;
}
p {
  font-size: 18px;
  padding: 5%;
  margin: 0;
}
p.nicetext {
  padding: 10%;
  font-size: 24px;
  text-align: center;
}
h1 {
  font-size: 42px;
  text-align: center;
}
h2 {
  font-size: 36px;
  text-align: center;
}
h3 {
  font-size: 30px;
  text-align: center;
}
.attribute {
  display: inline;
  color: indianred;
  font-size: 24px;
}
.desc {
  display: inline;
  color: lightgreen;
  font-size: 20px;
}
.pframe {
  padding: 15px;
  margin: 10px 15px;
  background-color: #222;
  border-radius: 10px;
  text-align: center;
}
footer {
  padding: 10px;
  text-align: center;
}
img {
  display: inline-block;
  height: auto;
  margin: auto;
  border-color: #FFF;
  vertical-align: middle;
}
img:not([src]), img[src=""], img[src$=".png"]:not([src*="/"]) {
  background-color: #0000FF;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  padding: 10px;
  box-sizing: border-box;
  position: relative;
  min-height: 100px;
}
img:not([src])::after, img[src=""]::after, img[src$=".png"]:not([src*="/"])::after {
  content: attr(alt) " (" attr(data-filename) ")";
  white-space: pre-wrap;
}
@media (max-aspect-ratio: 1/1) {
  .leftbox {
    flex: 0 0 calc(94%);
  }
  .fullbox {
   flex: 0 0 calc(94%); 
  }
  .fullimage {
    flex: 1 0 calc(94%);
  }
  .about-row {
    flex-direction: column;
  }
  .about-left, .about-right {
    width: 100%;
  }
  .about-right {
    flex-direction: column;
  }
}

:root {
    /* the font-family for all text */
    --nefty-font-family: sans-serif;
    /* the default font size (best kept as is) */
    --nefty-font-size: 16px;
    /* the smaller font size (best kept as is) */
    --nefty-font-size--small: 14px;

    /* the minimum and maximum width of the cards (responsive)  */
    --nefty-card-size-min: 300px;
    --nefty-card-size-max: 1fr;

    /*  the space between cards */
    --nefty-cards-gap: 28px;

    /* border radius for all roundings of inputs, buttons, images */
    --nefty-radius: 24px;
    --nefty-radius-image: 18px;
    --nefty-radius-small: 12px;

    /* border color for buttons, inputs */
    --nefty-border: #2255cc;
    /* border color for the cards (if none use same color as card background) */
    --nefty-border-card: #23262f;
    /* border thickness */
    --nefty-border-size: 2px;

    /* color primary text */
    --nefty-color: #fcfcfd;
    /* colors for non primary text */
    --nefty-color-secondary: #777e90;

    /* buy button in the card (highlight) */
    --nefty-btn-primary: #ff00ff;
    --nefty-btn-primary-bg: #23262f;
    --nefty-btn-primary-border: #00aaff;
    --nefty-btn-primary--active: #ff00ff;
    --nefty-btn-primary-bg--active: #ffff00;
    --nefty-btn-primary-border--active: #00ffff;

    /* styling of pagination buttons and small reset button (will appear once you start filtering) */
    --nefty-btn-secondary: #fcfcfd;
    --nefty-btn-secondary-bg: #141416;
    --nefty-btn-secondary-border: #353945;
    --nefty-btn-secondary--active: #fcfcfd;
    --nefty-btn-secondary-bg--active: #353945;
    --nefty-btn-secondary-border--active: #353945;

    /* the filter button on mobile design */
    --nefty-btn-tertiary: #141416;
    --nefty-btn-tertiary-bg: #fcfcfd;
    --nefty-btn-tertiary-border: #fcfcfd;
    --nefty-btn-tertiary--active: #fcfcfd;
    --nefty-btn-tertiary-bg--active: #141416;
    --nefty-btn-tertiary-border--active: #fcfcfd;

    /* backgrounds */
    /* list background in filters (schemas) */
    --nefty-bg-list-item: #141416;
    /* card mint background */
    --nefty-bg-mint: #0e0f12;
    /* all inputs (filters) */
    --nefty-bg-inputs: #23262f;
    /* card background */
    --nefty-bg-card: #23262f;
    /* loading state */
    --nefty-bg-loading: rgba(255, 255, 255, 0.05);
    /* fallback background color for images (best kept as is) */
    --nefty-bg-image: rgba(255, 255, 255, 0.05);
}