* {
  box-sizing: border-box;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue",  Arial, sans-serif;
  margin: auto;
}

.bg-image {
  position: absolute;
  bottom: -88%;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 165px 0 124px;
  width: 100%;
  margin: auto;
  border: #fbab40;
  height: 100vh;
  background-color: #242628;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: 70px;
  background-origin: padding-box;
}

.header h3 {
  text-align: center;
  color: #ff9e40;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  margin: 0;
  line-height: 36px;
}

/* styles.css */

#buttonContainer {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
}

#openButton {
  background-color: #424749; /* hidden paint addition*/
  color: #f2f5f8; 
  padding: 5px 10px; 
  border: none;
  cursor: pointer;
  font-size: 9;
  border-radius: 5px;
  outline: none;
  transition: background-color 0.3s;
  position: fixed;
  bottom: 54px; 
  right: 40px; 
  opacity: 0.5; 
  z-index: 9999;
}
#openButton:hover {
  opacity: 0.7; 
}

#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  justify-content: center;
  align-items: center;
}

#modal {
  background-color: #fff;
  width: 95%;
  max-width: 3000px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  position: relative;
}

#closeButton {
  position: absolute;
  top: -3px; /* for paint, needs rename */
  right: -1px; 
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px; 
  color: #000; 
}

#iframe {
  width: 100%;
  height: 80vh;
  border: none;
}



@keyframes showBubble {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.button:hover {
  max-width: 300px;
}

.icon {
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
  margin-right: 15px;
  padding: 0px 8px;
  display: flex;
  align-items: center;
}

.text {
  white-space: nowrap;
  padding-right: 15px;
}


.header {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  font-style: normal;
}

.header > h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 150%;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
}

.header > p {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  color: #ffffff;
  flex-grow: 0;
  margin: 16px 0px;
}

.options {
  display: flex;
  flex-direction: row;
}

.options > a {
  color: #ffffff;
  text-decoration: underline;
  margin: 0px 8px;
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
}

.options > a:first-of-type {
  margin-right: 30px;
}

.logo {
  margin-top: 75px;
}

.logo > img {
  width: 160px;
  height: 64px;
}

.learn-more > a > button {
  background: #f6821f;
  border-radius: 4px;
  border: none;
  width: 180px;
  margin-top: 78px;
  height: 55px;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  background: rgba(246, 130, 31, 1);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}



.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  font-size: 14px;
  text-align: center;
  background: rgb(61, 59, 59);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; 
  max-height: 34px; 
  transition: max-height 0.3s ease; 
  padding: 0 10px; 
}

.footer p {
  margin: 0; /* Remove default margin */
}

.footer > .footer-content {
  max-height: 34px; 
  overflow: hidden; 
  transition: max-height 0.3s ease; 
}

.footer.expanded > .footer-content {
  max-height: 200px; /* Expand the content when necessary */
}

.footer-toggle {
  cursor: pointer;
  color: white;
  font-size: 14px;
  margin-left: 10px;
}

.footer-toggle.expanded::before {
  content: "Show Less";
}

.footer-toggle::before {
  content: "Show More";
}

.footer-toggle.expanded::before,
.footer-toggle:hover::before {
  text-decoration: underline;
}

.playercount {
	display: inline-block;
	margin: 20px 15px 0 15px;
	padding: 2px 0;
	background-color: rgba(15, 199, 209, 0.75);
	font-size: 1em;
	color: white;
	text-align: center;
	border-radius: 5px 0 5px 0;
	line-height: 27px;
}

@media screen and (max-width: 1024px) {
    .container {
        background-size: contain;
        background-position-y: center;
    }
}

@media screen and (max-width: 600px) {

.container{
    background-size: contain;
    background-position-y: center;
    }
  pre {
    font-size: 0.8rem;
    padding: 8px 12px;
    width: 100%;
  }

  body {
    width: 100vw;
  }

  .header img {
    margin-left: 0;
  }

  .installation-steps {
    width: 100%;
    box-sizing: border-box;
  }

  h1 {
    font-size: 1.6rem;
  }

  ol {
    padding-left: 20px;
  }

  li {
    margin-bottom: 5px;
  }
}
