@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap");

body {
  font-family: "Montserrat", sans-serif;
  padding: 0;
  margin: 0;
  background: black;
  color: white;
}

h1 {
  font-size: xx-large;
  text-align: center;
}

h2 {
  font-size: x-large;
  text-align: center;
}

#next {
  position: fixed;
  left: 3rem;
  bottom: 3rem;
}

@media (-webkit-min-device-pixel-ratio: 1) {
  #next {
    width: 13rem;
  }
}

@media (-webkit-min-device-pixel-ratio: 1.25) {
  #next {
    width: 11rem;
  }
}

@media (-webkit-min-device-pixel-ratio: 1.5) {
  #next {
    width: 9rem;
  }
}

#banner {
  width: 100%;
  transform: scaleX(-1);
}

#logo {
  position: absolute;
  width: 25%;
  left: 50%;
  transform: translateX(-50%);
}

@media (-webkit-min-device-pixel-ratio: 1) {
  #logo {
    top: 31%;
  }
}

@media (-webkit-min-device-pixel-ratio: 1.25) {
  #logo {
    top: 32%;
  }
}

@media (-webkit-min-device-pixel-ratio: 1.5) {
  #logo {
    top: 33%;
  }
}

.maintext {
  font-family: Arial, Helvetica, sans-serif;
  color: white;
  padding-top: 0.5rem;
  font-size: 1.3rem;
  line-height: 1.8rem;
}

#content {
  position: relative;
  width: 40%;
  margin-right: 30%;
  margin-left: 30%;
  background-color: black;
  padding-bottom: 5rem;
}

.textbox {
  background-color: black;
  padding-right: 1rem;
  padding-left: 1rem;
  width: clamp(45ch, 50%, 75ch);
  margin: auto;
}
