body {
    font-family: 'Koulen', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #181818; /* Dark background */
    color: white; /* White text */
}
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #1f1f1f; /* Darker header */
    color: #FFA600;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: flex-start; /* Align to the left */
    align-items: center;
}

header h1 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}

footer {
    position: absolute; /* Position at the bottom */
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f1f1f; /* Dark footer */
    color: white;
    text-align: center;
    padding: 10px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.5);
}

.discord-iframe {
    width: 100%; /* Full width */
    min-width: fit-content;
    height: auto; /* Height will adjust based on the aspect ratio */
    aspect-ratio: 0.7 / 1; /* Set the aspect ratio (width:height) */
    border: none; /* Remove border */
}

.content {
    margin-bottom: 50px;
    align-items: center;
}
.discord-button {
    margin-top: 20px;
    padding: 15px 30px;
    background-color: #7289da; /* Discord color */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s;
}
.discord-button:hover {
    background-color: #5b6eae; /* Darker shade on hover */
}


@media (max-width: 768px) {
    header {
        justify-content: center; /* Center the header text */
    }
    .header-title {
        margin-left: 0; /* Remove left margin for centered alignment */
    }
    .discord-iframe {
        width: 80%; /* Full width */
        height: auto; /* Height will adjust based on the aspect ratio */
        aspect-ratio: 0.7 / 1; /* Set the aspect ratio (width:height) */
        border: none; /* Remove border */
    }
    
}