#demo {
  background: #000;
  padding: 1em;
  position: fixed;
  bottom: 0;
  z-index: 9;
  width: 100%;
  overflow: hidden;
}

#demo .wrapper {
  width: 1280px;
  display: flex;
  align-items: center;
}

#demo h1 {
  font-size: 2em;
  flex: 0.5;
}

#demo .demobuttons {
  display: flex;
  justify-content: flex-start;
  gap: 3em;
  flex: 1;
  text-align: left;
}

#demo .demolink {
  width: 100%;
  flex: 1;
}

#demo button {
  font-family: "manofa-condensed", sans-serif;
  font-size: 1.5em;
  text-transform: uppercase;
  background-color: #2b1e07;
  color: #fff;
  padding: 1em;
  border: none;
  cursor: pointer;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#demo button::hover {
  background-color: #e4ded0;
  border-color: #2b1e07;
  color: #000;
  text-shadow: none;
}

#demo button.nintendo-btn {
  background-color: #e60012;
  /* max-width: 50%; */
}

#demo button.ps-btn {
  background-color: #00439C;
}

#demo button.xbox-btn {
  background-color: #107c10;
}

#demo button img {
  max-height: 30px;
}


@media screen and (max-width: 768px) {
  #demo h1 {
    font-size: 3em;
    padding: 0.5em;
  }
  #demo .wrapper {
    display: block;
  }
  #demo .demobuttons {
    display: block;
    max-height: 0;
    transition: max-height 0.25s ease-out;
    overflow: hidden;
  }

  #demo .demobuttons.visible {
    max-height: 500px;
  }

  #demo .demolink {
    display: block;
    margin: 1em 0;
  }
}
