body {
    margin: 0;
    font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: white;
    user-select: none;
}

.container-full {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #36393f; /* Discord's dark theme background color */
}

.discord-background {
    text-align: center;
}

.discord-background h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.discord-background p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.discord-button {
    padding: 12px 40px;
    background-color: #7289da; /* Discord's brand color */
    transition: all 0.3s ease-in;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: inline-block;
    text-decoration: none;
    color: white;
}

.discord-button:hover {
    background-color: #677bc4; /* Slightly darker shade on hover */
}

