body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #dddce7;
    background-color: #040443;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.navbar {
    display: flex;
    flex-direction: column;
    justify-content: center;  /* Centers items vertically */
    align-items: center;  /* Centers items horizontally */
    padding: 20px 0;
    text-align: center; /* Centers text within elements */
}

.navbar-brand {
    color: #11ae77;
    font-size: 2rem;
    font-weight: 600;
}

.discord-button {
    display: inline-block;
    background-color: #11ae77;
    color: #040443;
    text-decoration: none;
    padding: 10px 20px;
    margin: 20px 0;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.discord-button:hover {
    background-color: #dddce7;
    color: #040443;
}

.hero {
    text-align: center;
    padding: 50px 0;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 400;
}

footer {
    background-color: #040443;
    text-align: center;
    color: white;
    padding: 20px 0;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

@media screen and (max-width: 768px) {
    .container {
        width: 95%;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }
}

.logo {
    max-width: 200px; /* Adjust this value as needed */
    width: 100%;
    height: auto; /* Maintain the aspect ratio of the image */
}
/* ... */
@media screen and (max-width: 768px) {
    .logo {
        max-width: 150px; /* Smaller max-width for smaller screens */
    }