#nav2 {
    display: flex;
    flex-direction: row-reverse;
    min-height: 30px;
    max-height: 30px;
    background-color: rgba(255,255,255,0.5);
}

.nav2link {
    padding: 5px 10px;
    position: relative;
    display: inline-block;
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    position: absolute;
    min-width: 160px;
    background-color: rgba(83,83,83,0.85);
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    z-index: 2;
    left: 0;
    top: 50px;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: white;
    padding: 12px 10px;
    text-decoration: none;
    text-align: left;
    white-space: nowrap;
    display: block;
    line-height: initial;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: darkgrey;
}

/* Show the dropdown menu on hover */
.nav2link:hover .dropdown-content {
    max-height: 150px;
    transition-property: max-height;
    transition-duration: 0.5s;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.nav2link:hover, .nav2link.hover {
    color: white;
    height: 40px;
    align-self: flex-end;
    line-height: 3.6em;
    border-radius: 10px 10px 0 0;
    transition-property: height, line-height;
    transition-duration: 1.5s;
    background-image: linear-gradient(#00a6e1, #0c69ae);
}

#KontaktLink {
    margin-right: 15%;
}