#demo {
  background: linear-gradient(90deg, #e1002c 0%, #000 100%);
  padding: 1em;
  position: fixed;
  bottom: 0;
  z-index: 9;
  width: 100%;
  overflow: hidden;
}

#demo .wrapper {
  width: 1280px;
  max-width: 100%;
  display: flex;
  align-items: center;
  margin: auto;
}

#demo h1 {
  font-size: 4em;
  flex: 1;
  text-shadow: 2px 2px rgba(0, 0, 0, .5);
}

#demo .demobuttons {
  display: inline-flex;
  justify-content: center;
  gap: 1em;
  flex: auto;
  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: transparent;
  /* border: 1px solid #fff; */
  /* border-radius: 2em; */
  color: #fff;
  /* padding: .5em; */
  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 img {
  max-width: unset;
  max-height: 45px;
} 
/* #demo button.nintendo-btn {
  background-color: #e60012;
}

#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: 1280px) {
  #demo .wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
  #demo h1 {
    flex: auto;
    text-align: center;
    padding-bottom: 0.5em;
  }
  #demo buttons {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  #demo {
    cursor: pointer;
  }
  #demo h1 {
    /* font-size: 1em;
    padding: 0.5em; */
    padding: 0;
  }
  #demo .wrapper {
    display: block;
    /* max-height: 50px; */
  }
  #demo .demobuttons {
    /* display: block; */
    flex-wrap:wrap;
    /* padding:1em; */
    max-height: 0;
    transition: max-height 0.25s ease-out;
    overflow: hidden;
    text-align: center;
    width:100%;
  }

  #demo .demobuttons.visible {
    max-height: 500px;
  }

  #demo .demolink {
    display: inline-block;
    margin: 1em 0;
    flex: none;
  }
}
