body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #2c2f33;
    color: #fff;
    line-height: 1.6;
}

header {
    background-color: #23272a;
    color: #fff;
    padding: 1rem 2rem;
    text-align: center;
}

main {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
}

h2 {
    color: #7289da;
    margin-bottom: 0.5rem;
}

p {
    max-width: 600px;
    text-align: left;
}


#discord {
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
    margin-top: 1rem;
}

.link-container {
    margin-bottom: 1.5rem; 
    width: 100%;
}

.discord-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #7289da;
    border-radius: 15px;
    padding: 0.6rem;
    width: 220px;
    height: 50px;
    transition: background-color 0.2s, transform 0.2s;
}

.discord-button:hover {
    background-color: #5b6eae;
    transform: scale(1.1);
}



footer {
    text-align: center;
    padding: 0.2rem;
    background-color: #23272a;
    color: #fff;
    font-size: 0.6rem;
    user-select: none;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    background: #f0f0f0;
    border: 1px solid #ccc;
    white-space: nowrap;
  }

  .marquee-content {
    display: inline-block;
    padding-left: 100%; /* start off-screen */
    animation: scroll 10s linear infinite;
  }

  .marquee-content span {
    display: inline-block;
    margin-right: 50ch; /* adjust space between repeats */
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }



#changelog {
    margin-top: 40px;
    padding: 10px;
    background-color: #222;
    color: #fff;
    font-family: monospace;
    font-size: 14px;
    max-height: 200px;
    overflow-y: auto;
}