#topNavigation {
  width: 90%;
  margin: 0 auto 0 auto;
  text-align: center;
  background-color: #002950;
} 

/* Add a black background color to the top navigation */
.topnav {
    width: 90%;
    width: 100%;
    margin: 0 auto 0 auto;
    /* background-color: #333;
    background-color: #3e9ece;
    background-color: #0073ce; */
    background-color: #002950(135, 114, 255);
    /* background-color: rgba(135, 114, 255, 0.8); */
    overflow: hidden;
    display: flex;
    justify-content: center;
} 

/* Trying to chance the celor for hovering over the menu 
.topnav:hover {
  background-color: #003366;
  color: #eeeeee;
} */

/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    color: #fff;
    text-align: center;
    padding: 14px 16px;
    padding: 20px 32px;
    padding: 20px 20px;
    text-decoration: none;
    font-size: 20px;
    font-size: 1.25em;
    border-bottom: 0;
} 

/* Add an active class to highlight the current page , braucht man nicht bei drop down button
.active {
    background-color: #4CAF50;
    background-color: #006188;
    color: white;
} */

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
    display: none;
}
.topnav .iconHome {
    display: none;
} 

/* Dropdown container - needed to position the dropdown content */
.dropdown {
    float: left;
    overflow: hidden;
}

/* Style the dropdown button to fit inside the topnav */
.dropdown .dropbtn {
    font-size: 20px;
    font-size: 1.25em;
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    padding: 14px 16px;
    padding: 20px 32px;
    padding: 20px 20px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    cursor: pointer;
} 

.dropdown .dropbtn.active {
    background-color: #003366;
    background-color: #23b177; 
}  /* missing } shows all content !!! */

/* Dropdown buttons to see wich one you are hovering over 

.dropdown .dropbtn:hover {
  background-color: #ff0000;
  color: #ffffff;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    background-color: #002950;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(255, 255, 255, 0.2);
    z-index: 1;
} 

/* Style the links inside the dropdown */
.dropdown-content a {
    float: none;
    color: rgb(255, 255, 255);
    padding: 20px 32px;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    text-align: left;
} 

/* Add a dark background on topnav links and the dropdown button on hover */
.topnav a:hover, .dropdown:hover .dropbtn {
    background-color: #0073ce;
    background-color: #23b177;
    color: white;
}
.dropdown:hover .dropbtn.active {
    background-color: #23b177;
} 

/* Add a grey background to dropdown links on hover */
.dropdown-content a:hover {
    background-color: #ddd;
    background-color: #23b177;
    color: #002950;
}

/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown:hover .dropdown-content {
    display: block;
} 

i.fa {
    border: solid white;
    border-width: 0 2px 2px 0px;
    display: inline-block;
    padding: 3px;
    margin-bottom: 2px;
} 

.right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.left {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.fa-caret-down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    padding-bottom: 2px;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 900px) {
  #topNavigation {
    width: 100%;
    text-align: center;
    background-color: #3e9ece;
    background-color: #002950;
  }
  .topnav {
    display: block;
  }
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
  .topnav a.iconHome {
    float: left;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 900px) {
  .topnav {
    display: block;
  }
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}


/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
  padding-top: 120px;
} 