body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: black;
    color: white;
}

/* Navigation bar styling */
nav {
    background-color: #333;
    overflow: hidden;
}

nav a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    font-size: 17px;
}

nav a:hover {
    background-color: #ddd;
    color: black;
}

nav a.active {
    background-color: #04AA6D;
    color: white;
}

header {
    /* width: 30%;
    height: 75px;
    background-image: url('../Images/aobanner.png');
    background-size: contain;
    background-position: center; */
    display: flex;
    justify-content: center;
    align-items: center;
}
header img {
    width: 30%;
    margin-left: auto;
    margin-right: auto;
}

header h1 {
    color: white;
    font-size: 48px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.container {
    margin: 20px;
    padding: 20px;
}

iframe {
    width: 80%;
    height: 450px;
    margin: 20px auto;
    border: none;
}

.discord-link {
    display: block;
    margin-top: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #7289da;
    text-decoration: none;
    transition: color 0.3s ease;
}

.discord-link:hover {
    color: #4e5a8a;
}

.about-us {
    margin: 20px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.about-us h2 {
    font-size: 36px;
    color: white;
}

.about-us p {
    font-size: 18px;
    line-height: 1.6;
    color: #ddd;
}

/* Section styles */
.section {
    display: none;
}

.section.active {
    display: block;
}

.section h2 {
    font-size: 36px;
}

.section p {
    font-size: 18px;
    line-height: 1.6;
    color: #ddd;
}