* {
    box-sizing: border-box;
    background-color: transparent;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    padding-top: 56px; /* Space for fixed nav */
    height: 100%;
    color: #FFFFFF;
    background-color: #C2B280;
    text-align: center;
}

header {
    margin: 0;
    padding: 0;
}

#global-nav {
    background-color: #346543;
    padding: 10px;
    position: fixed;
    height: 56px;
    z-index: 1000;
}

#pyp-nav {
    border-color: #FFFFFF;
    border-style: solid;
    border-width: 1px;
    margin: 0;
    padding: 0;
}

nav {
    align-items: center;
    display: flex;
    justify-content: center;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

#nav-pages, #pyp-nav-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
}

#points-allocation, #pyp-payout-structure {
    margin: 20px auto;
    max-width: 600px;
    text-align: left;
    list-style: none;
}

.nav-items > a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
}

.subnav {
    border-left: 1px solid #FFFFFF;
    border-right: 1px solid #FFFFFF;
    padding: 0 10px;
}