:root {
    --header-bg: #211630;
    --header-text: rgb(201, 247, 246);
    --header-hover-bg: #f07cec;
    --header-hover-text: rgb(32, 26, 34);
    --section-unactive: rgb(196, 101, 188);
    --section-active: rgb(167, 75, 161);
    --section-status: rgb(52, 11, 219);
}

* {
    box-sizing: border-box;
}

body {
    background-image: url('images/ga_bg1.jpg');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
    font-family: "Poppins", Arial, sans-serif;
}

#header {
    display: flex;
    justify-content: space-between;
    background-color: var(--header-bg);
    padding: 20px 20px;
    position: fixed; /* Set the navbar to fixed position */
    z-index: 999;
    top: 0; /* Position the navbar at the top of the page */
    width: 100%; /* Full width */
}

#header a {
    float: left;
    color: var(--header-text);
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-size: 18px;
    line-height: 25px;
    border-radius: 4px;
}

#header a.name {
    font-size: 40px;
    font-weight: bold;
}

#header a:hover {
    background-color: var(--header-hover-bg);
    color: var(--header-hover-text);
}


#header-right {
    float: right;
}


main {
    margin-top: 92px; /* Add a top margin to avoid content overlay */
}

button {
    display: flex;
    width: 85%;
    margin: 0 auto;
    justify-content: space-between;
}

.collapsible {
    border-radius: 40px;
    background-color: var(--section-unactive);
    color: white;
    cursor: pointer;
    margin: 0 auto;
    padding: 20px;
    border: none;
    text-align: left;
    outline: none;
    font-size: 23px;
    font-weight: 500;
}

.collage {
    display: flex;
    justify-content: center;
    gap: 1em;
}

.active, .collapsible:hover {
    background-color: var(--section-active);
}

.collapsible:after {
    content: '\002B';
    color: var(--section-status);
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2212";
}

.content {
    border-radius: 0 0 18px 18px;
    padding: 0 18px;
    margin-bottom: 0.5em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: rgba(34, 33, 35, 0.9);
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    color: white;
    font-size: 20px;
    font-family: "Poppins", serif;
}

p a {
    color: var(--header-text);
}

li a {
    color: var(--header-text);
}

