
body {
  margin: 0;
  background-color: rgb(69, 69, 96);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 14px;
  overflow-x: hidden;
  overflow: hidden;
}

.disable-zoom {
  touch-action: manipulation;
}


.button-container {
  text-align: center;
  position: absolute;
  bottom: 222px;
  left: 799px;
}

.button {
  border: none;
  color: white;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.button1 {
  background-color: #2a449c; 
  color: rgb(255, 255, 255); 
  border: 1px solid #ffffff;
}

.button1:hover {
  background-color: #567eff;
  color: white;
}


.button2 {
  background-color: #c83030; 
  color: rgb(255, 255, 255); 
  border: 1px solid #ffffff;
}

.button2:hover {
  background-color: #eb6666;
  color: white;
}




.button3 {
  background-color: #96eafb; 
  color: rgb(0, 0, 0); 
  border: 1px solid #000000;
}


.button3:hover {
  background-color: #9adfff;
  color: white;
}


#sticky-footer {
  padding: 10px 0;
  background: var(--header_background);
  color: var(--primary-medium);
  text-align: center;
  position: fixed; /* Changed to fixed for mobile */
  bottom: 0;
  width: 100%;

  color: wheat;
  background-color: black;
  left: 0;
}

.center_element {
  position: absolute;
  top: 50%; /* Centered vertically */
  left: 50%;
  transform: translate(-50%, -50%); /* Centered horizontally and vertically */
  border-radius: 50%;

}

a {
color:white

}











/* contact page */

.contact-container {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(42, 68, 156, 0.8);
  color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.discord-button {
  display: inline-block;
  background-color: #7289DA;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.discord-button:hover {
  background-color: #5B73B7;
}




/* contact page ends here */





/* PAGES  FOLDER */


/* stuf */
.txz {
  padding: 8px;
  color: white;
  text-align: center;
  font-size: 12px; /* Smaller font size for fitting more content */
  line-height: 1.3; /* Reduces spacing between lines */
  white-space: pre-line; /* Ensures line breaks and spaces are respected */
  max-width: 90%; /* Limits the width to 90% of the screen */
  margin-left: auto;
  margin-right: auto;
  height: 90vh; /* Limits the container to 90% of the viewport height */
  overflow-y: auto; /* Adds scrolling within the container if content overflows */
  overflow-wrap: break-word; /* Prevents long words from overflowing */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertically centers the text */

}

/* CMDLIST */

body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100vh;
  margin: 0;
  padding: 0 0 73px;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
  font-size: 15.7px;
  overflow-x: hidden;
  overflow-y: auto;
}

.command-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(302px, 1fr));
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
  padding: 12px;
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track {
  background: #e0e4e9;
  border-radius: 12px;
}

body::-webkit-scrollbar-thumb {
  background-color: #3b5998;
  border-radius: 12px;
  border: 2px solid #f0f4f8;
}

body::-webkit-scrollbar-thumb:hover {
  background-color: #2a449c;
}

.category-card {
  background-color: #3b5998;
  border-radius: 12px;
  font-size: 1.09em;
  padding: 12px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.category-card:hover {
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.category-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1.33em;
}

.category-icon {
  font-size: 24px;
  margin-right: 10px;
}

.command-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.command-list li {
  font-size: 1.09em;
  margin-bottom: 7px;
  color: #e1e3ea;
}

li2 {
  color: #dda8ff;
  font-weight: bold;
  font-size: 1.09em;
  margin-bottom: 7px;
}

#footer2 {
  background-color: #3b5998;
  color: wheat;
  padding: 18px;
  text-align: center;
  font-size: 1.09em;
  width: 100%;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  height: 73px;
}

@media (max-width: 929px) {
  body {
    font-size: 14px;
  }

  .command-container {
    grid-template-columns: repeat(auto-fit, minmax(242px, 1fr));
    gap: 10px;
    padding: 10px;
  }
 
  .category-card {
    padding: 10px;
    font-size: 1em;
  }

  .category-header {
    font-size: 1.1em;
  }

  .category-icon {
    font-size: 20px;
  }

  #footer2 {
    font-size: 1em;
    padding: 15px;
    height: 60px;
  }
}


/* CMDLIST ENDS HERE */
