ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

    ul li {
        padding: 15px 20px;
    }

        ul li a {
            text-decoration: none;
            color: #ffffff;
            font-size: 190%;
            font-weight: bold;
            transition: color 0.3s ease;
        }

            ul li a:hover {
                color: #F0B310;
            }


/******************************************************* 


                    MOBILE STYLING                              


********************************************************/

@media (max-width: 480px) {
    ul {
        display: flex;
        justify-content: center;
        align-items: center;
        list-style: none;
        margin: 0;
        padding: 0;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
    }

    ul li a {
        text-decoration: none;
        color: #ffffff;
        font-size: 100%;
        font-weight: bold;
        transition: color 0.3s ease;
    }








}