body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.box {
    background-color: rgba(51, 51, 77, 0.9);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    color: white;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.box h1 {
    margin: 0;
    font-size: 32px;
}

.box p {
    margin: 15px 0;
}

.discord-logo {
    width: 100px;
    height: auto;
    margin: 10px 0;
    cursor: pointer;
}

.description {
    margin-top: 20px;
    font-size: 18px;
}
