
.header {
    background-color: #f1f1f1;
    padding: 30px;
    text-align: center;
}

#navbar {
    overflow: hidden;
    background-color: #333;
    position: relative;

    display: flex;
    justify-content: space-around;

    z-index: 19;
}
.remote-controls.active {
    z-index: 21;
}

#navbar li {
    width: 100%;
    list-style-type : none;
    position: relative;
}

#navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    /*font-size: 17px;*/
    font-size: 1.2rem;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#navbar a:hover {
    background-color: #ddd;
    color: black;
}

#navbar a.active {
    background-color: #04AA6D;
    color: white;
}

/*#navbar li a p {*/
/*    position: relative;*/
/*    transform: translate(-50%, -50%);*/
/*    left: 50%;*/
/*    top: 50%;*/
/*}*/

.sticky {
    position: sticky !important;
    top: 0;
    width: 100%;
    transition: all 0.3s;
}