*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
nav {
    background-color: #333;
}

nav > details{
    font-size: 1.2rem;
}
nav > details > summary{
    font-size: 17px;
    color: #f2f2f2;
    list-style-type: none;
    text-align: right;
    padding: 14px 5px;
}

nav > details > summary::after{
    content: '\002630';
}

nav > details > summary:hover{
    background-color: #ddd;
    color: black;
}

nav > details > ul, nav > ul{
    list-style-type: none;
}
nav > details > ul > li > a, nav > ul > li > a{
    display: block;
    padding: 14px 16px;
    color: #f2f2f2;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

nav > details > ul > li > a:hover, nav > ul > li > a:hover{
    background-color: #ddd;
    color: black;
}

nav > details > ul > li > a.active, nav > ul > li > a.active{
    background-color: #04AA6D;
    color: white;
}

nav > ul{
    display: none;
}

@media screen and (min-width:600px) {
    nav > details{
        display: none;
    }
    nav > ul{
        display: flex;
    }
}

/*


@media screen and (max-width: 600px) {
    nav > a:not(:first-child) {
        display: none;
    }

    nav > a.icon {
        float: right;
        display: block;
    }
}


@media screen and (max-width: 600px) {
    nav.responsive {
        position: relative;
    }

    nav.responsive > a.icon {
        position: absolute;
        right: 0;
        top: 0;
    }

    nav.responsive > a {
        float: none;
        display: block;
        text-align: left;
    }
} */