body {
    margin: 0;
    padding: 0;
    background-color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Ubuntu', sans-serif;
    color: #FFD700;
    height: 100vh;
}

#info-container {
    width: 840px;
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0);
}

.support {
    width: 840px;
    height: 460px;
    background-image: url('Menu.png');
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 0;
    overflow: hidden;
}

.support::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    z-index: 1;
}

.support .text-box {
    position: relative;
    z-index: 2;
}

.text-box {
    max-width: 650px;
    min-width: 650px;
    max-height: 400px;
    font-size: 1.2em;
    background-color: rgba(51, 51, 51, 0.9);
    color: #FFD700;
    border-radius: 10px;
    padding: 10px;
    margin-top: 130px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 50%;
    margin-left: 10px;
    display: flex;
    align-items: center;
    line-height: 1.7em;
    word-wrap: break-word;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.maintenance-icon {
    max-width: 70px;
    margin-right: 30px;
    animation: blink 1.5s infinite;
}

.Copyright-content {
  position: fixed;
  bottom: -55px;
  left: 0;
  right: 0;
  background-color: #333;
  color: #FFD700;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  font-size: 0.9em;
  max-width: 800px;
  max-height: 100px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

.Copyright-content span {
  flex-grow: 1;
}

.Copyright-content p {
  margin: 0;
  line-height: 1.4;
}

.Copyright-content a {
  color: #FFD700;
  text-decoration: none;
}

.Copyright-content a:hover {
  text-decoration: underline;
}

.discord-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.discord-icon {
  height: 50px;
  position: relative;
  top: 0;
}

.vertical-adjust {
  top: 5px;
}
