#top-bar {
    position: fixed;
    height: 50px;
    width: 100%;
    top: 0px;
    left: 0px;
    background-color: #ffa500;
    z-index: 1000;
}
#site-logo {
    height: 30px;
    width: auto;
    margin-left: 10px;
    margin-bottom: 8px;
}
#license-info {
    font-size: 14px;
    font-weight: 300;
    color: #FFFFFF;
    margin: 1px 20px;
}
#project-info {
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 1px 20px;
}

#nav {
    position: fixed;
    height: 100vh;
    top: 50px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    z-index: 1000;
}
#nav-main-menue {
    background-color: #414141;
    border-right: 1px solid #ffa500;
    height: 100%;
    width: 60px;
}

#nav-second-menue {
    background-color: #414141;
    height: 100%;
    width: 225px;
}

.nav-second-menue-section {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.nav-second-menue-section-topic {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 400;
    border-bottom: 5px solid #ffa500;
    padding-left: 10px;
    padding-bottom: 5px;
    width: 100%;
}
.nav-second-menue-section-entry {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 18px;
    font-weight: 300;
    margin-top: 5px;
    margin-bottom: 5px;
    padding-left: 10px;
    width: 100%;
}

.nav-icon {
    font-size: 25px;
    color: #FFFFFF;
    margin-top: 15px;
    margin-bottom: 15px;
}