/* #AB92BF Amethyst smoke    */
/* #9DFFF9 Soft Cyan         */
/* #8FC93A Yellow Green      */
/* #26408B French Blue       */
/* #222222 Carbon Black      */

/* #CC444B Blushed Brick     */
/* #DA5552 Lobster Pink      */
/* #DF7373 Light Coral       */
/* #E39695 Light Coral       */
/* #E4B1AB Powder Blush      */

* {
    padding: 0;
    margin: 0;
    font-family: monospace;
}

.logo-img {
    float: right;
    background-image: url(/img/nameplate.png);
    background-repeat: no-repeat;
    width: 120px;
    height: 50px;
    padding: 0px 0px 0px 0px;
}

.StickyHeader{
    position: sticky;
    width: auto;
    height: 50px;
    padding: 5px;
    margin: 0px;
    top: 0px;
    left:0px;
    font-size: 25px;
    background-color: #464646;
    white-space: normal;
    border-bottom: 3px solid #000000;
}

ul {
    float:left;
    list-style: none;
    width: auto;
    height: 50px;
}

ul li {
    width: auto;
    min-width: 150px;
    display: inline-block;
    position: relative;
    margin: 0px;
}

ul li a {
    display: block;
    padding: 10px 25px;
    height: 20px;
    color: #FFF;
    text-decoration: none;
    text-align: center;
    font-size: 20px;
    background: #5c5c5c;
    box-shadow: 4px 4px 10px black;
    border-bottom: 3px Solid #000000;
}

ul li ul.dropdown li {
    display: block;
}

ul li ul.dropdown{
    top: 58px;
    width: auto;
    position: absolute;
    z-index: 999;
    border-top-right-radius: 25px;
    white-space:nowrap;
    display: none;
}

ul li a:hover{
    border-bottom: 3px Solid #DA5552;
}

ul li:hover ul.dropdown{
    display: block;
}

#navigationButton {
    width: auto;
    margin-top: 0px;
    margin-left: 20px;
    float: left;
}

#DropDown{
    position: relative;
    margin-top: 0px;
    height: 20px;
    padding: 15px;
    top: 5px;
    text-align: center;
    border-top-right-radius: 25px;
    border-top-left-radius: 25px;
    border-bottom: 3px Solid #000000;
    z-index: 1000;
    box-shadow: none;
}

.absolute-centered{
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media only screen and (max-width:800px) {
  /* For tablets: */
  
    ul li {
        min-width: 30px;
    }

    #navigationButton {
        margin-left: 15px;
    }


}
@media only screen and (max-width:500px) {
  /* For mobile phones: */
  
    #navigationButton {
        margin-left: 5px;
    }
    

}
@media only screen and (max-width:350px) {
  /* For mobile S phones: */
  
    .logo-img {
        width: 80px;
    }

}