@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap");

html {
  font-family: "Press Start 2P", cursive;
  text-align: left;
}
h1 {
  font-family: "Press Start 2P", cursive;
  text-transform: uppercase;
  margin: 0;
}
p {
  font-family: "Press Start 2P", cursive;
  font-size: 22px;
  color: #0f0;
  margin: 0;
}
a {
  color: white;
}
body {
  background-color: black;
  color: #0f0;
  background-image: url("downloadBG_1.gif");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(54, 202, 0, 0.324);
  mix-blend-mode: multiply;
  z-index: -1;
}

.main-container {
  width: 64vh;
  height: 70vh;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-style: solid;
  border-color: #ffffff;
  border-width: 1px;
  color: rgb(255, 255, 255);
  border-radius: 20px;
}

.code {
  font-family: "Courier New", monospace;
  background-color: #000;
  color: #0f0;
  padding: 10px;
}

.footer-logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100px;
  max-height: 100px;
}

.menu-logo-graphic {
  width: 300px;
  height: auto;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.header-text {
  font-size: 12px;
  color: rgb(0, 255, 13);
}
.header-2-text {
  font-size: 22px;
  color: rgb(0, 255, 13);
  text-transform: uppercase;
  text-align: center;
  mix-blend-mode: luminosity;
}

.logo-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 600px) {
  .code {
    font-size: 12px;
  }

  .main-container {
    width: 90vw;
    height: 90vh;
    overflow: hidden;
  }
}
