html {
  scrollbar-color: #1c2836 chartreuse;
  scrollbar-width: thin;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  height: 100vh;
  background-color: #1c2836;
  background-image: url("../img/game_background/3_screen_background.png");
  background-size: cover;
  background-position: center;
  font-family: "poppinsregular";
  color: white;
}

h1 {
  font-family: "creepsterregular";
  font-size: 56pt;
  color: chartreuse;
  text-align: center;
}

h2 {
  font-family: "creepsterregular";
  color: chartreuse;
  font-size: 40pt;
  margin: 0px;
  font-weight: 800;
  text-align: left;
}

h3 {
  font-family: "poppinsbold";
  font-size: 20pt;
  margin-top: 50px;
  margin-bottom: 0px;
  color: chartreuse;
  text-align: center;
  hyphens: auto;
}

a {
  font-family: "creepsterregular";
  font-size: 15pt;
  color: chartreuse;
  cursor: pointer;
}

a:hover {
  color: green;
}

.hidden {
  display: none !important;
}

.verticalInfo {
  display: none;
}

.closeButton {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0);
  border: none;
  background-image: url("../img/elements/button_close.png");
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.closeButton:hover {
  background-image: url("../img/elements/button_close-hover.png");
}

@media (max-width: 1200px) {
  h1 {
    font-size: 48pt;
  }

  h2 {
    font-size: 35pt;
  }

  h3 {
    font-size: 15pt;
  }

  .closeButton {
    width: 50px;
    height: 50px;
  }
}

@media screen and (orientation: portrait) and (pointer: coarse) {
  .verticalInfo {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px;
  }
}

@media (max-width: 780px) {
  h1 {
    font-size: 40pt;
    hyphens: auto;
  }

  h2 {
    font-size: 30pt;
  }

  h3 {
    font-size: 13pt;
  }

  p,
  ul,
  ol {
    font-size: 10pt;
    hyphens: auto;
  }

  a {
    font-size: 12pt;
  }

  .closeButton {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 500px) {
  body {
    overflow: hidden;
  }
  h1 {
    font-size: 30pt;
  }
}
