body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #36393f; /* Dark background color */
    color: #ffffff; /* Light text color */
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.content {
    text-align: center;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Add any additional styling as needed to mimic Discord's UI design */

/* Media query for responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
    }
}
