/*Navigation bar*/
nav {
    padding: 5px;
    border-radius: 10px;
    background-image: conic-gradient(from var(--XP-Fade),
    green,greenyellow,green,greenyellow,green,greenyellow,green);

    animation: 30s XP-upNdown linear infinite;
}

@property --XP-Fade {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@keyframes XP-upNdown{
    from{
        --XP-Fade:0deg
    }
    to{
        --XP-Fade: 360deg;
    }
}

nav #XP_Bar {
    float:right;
    align-items: center;
    align-content: center;
    text-align: center;
}


.dropdown_button {
    background-color: transparent;
    color: white;
    font-size: 16px;
    border: none;
    float:left;
}

.dropdown_menu {
    display: inline-block;
    position: relative;
}

.dropdown_content a{
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown_content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
.dropdown_content a:hover {background-color: #ddd;}

.dropdown_menu:hover .dropdown_content {display: block;}

.dropdown_menu:hover .dropdown_button {background-color: #3e8e41;}