body {
    background-color: #0C0105;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#header {
    background-color: rgba(0, 0, 0, 0);
    color: #DAA520;
    padding: 1em;
    text-align: right;
    margin-right: 30px;
    font-size: 3.0em;
}

h2 {
    color: #DAA520;
    font-size: 2.0em;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
}

#navbar {
    background-color: rgba(0, 0, 0, 0);
    color: #DAA520;
    padding: 1em;
    text-align: right;
    margin-left: 30px;
    font-size: 1.5em;
}


#navbarList {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 25px;

    margin-right: 40px;
    padding-bottom: 15px;
}

#navbarList a {
    color: #DAA520;
    text-decoration: underline;
}


/* Mobil */
@media (max-width: 600px) {

    #navbarList {
        display: grid;

        /* 4 menyobjekt per rad */
        grid-template-columns: repeat(4, 1fr);

        width: 100%;
        margin: 0;
        padding: 5px 0 10px 0;

        gap: 8px 4px;

        text-align: center;
        font-size: 0.8em;
    }

    #navbarList a {
        display: block;
        white-space: nowrap;
    }

}


/* Smal mobil */
@media (max-width: 400px) {

    #navbarList {
        /* 3 per rad */
        grid-template-columns: repeat(3, 1fr);
    }

}



ul {
    list-style-type: none;
    color: #DAA520;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0);
}

li {
    color: #DAA520;
}

a {
    color: #DAA520;
    text-decoration: underline;
}

a:hover {
    color: yellow;
    text-decoration: underline;
}

#content {
    color: #DAA520;
    padding: 1em;
    text-align: center;
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 30px;
    font-size: 1.5em;
}


