#header-container
{
    width: 100%;
    height: 40px;
    background-color: #000000;
    margin-left: auto;
    margin-right: auto;
    position: fixed;
    top: 0px;
    z-index: 1;
}

#website-name
{
    display: inline;
    width: 45%;
    font-size: 1.8em;
    font-weight: bold;
    color: white;
    text-align: left;
    margin-left: 5px;
    text-shadow: 5px 0px black;
}

.websiteNameLink
{
    color: white;
    text-decoration: none;
    transition: color 0.75s ease-in-out; 
}

.websiteNameLink:hover
{
    color: #FE4600;
}

#nav-links
{
    list-style: none;
    list-style-type: none;
    overflow: hidden;
    position: absolute;
    right: 0;
    /*margin-right: 5px;*/
}

#navigation
{  
    width: 45%;
    float: right;
}

#navigation li
{
    float: left;
    list-style: none;
    list-style-type: none;
}

#navigation a:link, #navigation a:visited
{
    font-weight: bold;
    text-decoration: none;
    padding: 20px;
    border: 1px solid white;
    color: white;  
    line-height: 40px;
    background-color: transparent;
    transition: background-color 0.75s ease-in-out;              
}

#navigation a:hover
{
    background-color: #FE4600;
    color: black;
}

#hamburger
{
    display: none;
}

#mobile_menu
{
    position: fixed;
    top: 0;
    z-index: 2;
    display: none;
    width: 100%;
    height: 100vh;
    /*background-color: #7E92C8;*/
    background-image: linear-gradient(to right, rgba(128,148,201,1), rgba(255,204,255,1));
    animation-name: show-slide-menu;
    animation-duration: 1s;
    opacity: 1;
    border-radius: 17px;
}

#close_button
{
    position: absolute;
    top: 10px;
    right:25px;    
    padding: 10px 20px;
    background-color: #7E92C8;
    color: white;
    font-size: 2em;
    border-radius: 17px;
    transition: 0.5s;
    box-shadow: 5px 0px black;
}
/*
#close_button:hover
{
    background-color: darkgray;
    color: white;
    cursor: pointer;
}
*/
@keyframes show-slide-menu
{
  from
  {
    display:none;
    opacity: 0;
    width: 0%;
    background-color: #F5F5F5;
  }
  to
  {
    display: block;
    opacity: 1;
    width: 100%;
    background-color: #7E92C8;
  }
}

@keyframes hide-slide-menu
{
  from
  {
    display:block;
    opacity: 1;
    width: 100%;
    background-color: #7E92C8;
  }
  to
  {
    display: none;
    opacity: 0;
    width: 0%;
    background-color: #F5F5F5;
  }
}

#mobile-nav
{
    width: 100%;
}

#mobile-nav ul
{
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: relative;
    top: 50px;
}
  
#mobile_menu a:link, #mobile_menu a:visited
{
    text-decoration: none;
    display: block;
    width: 90%;
    background-color: #7E92C8;
    padding: 20px 0px;
    text-align: center;
    border-bottom: 1px solid white;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    transition: 1s background-color ease-in-out;
    color: white;
    box-shadow: 5px 0px 5px black;
    margin-bottom: 7px;
    font-size: 1.3em;
    text-shadow: 2px 0px black;
    font-weight: bold;
}
/*
#mobile_menu a:hover
{
    background-color: #904A92;
    color: white;
    border-left: 1px solid white;
    border-right: 1px solid white;
}

#mobile_menu a:active
{
    color: green;
}
*/

#menu-heading
{  
    position: relative;
    text-align: center;
    top: 15px;
    margin-left: 30px;
    font-size: 2em;
    font-weight: bold;
    color: white;
    animation-name: show-menu-header;
    animation-duration: 1s;
    text-shadow: 2px 0px black;
}


@keyframes show-menu-header
{
  from
  {
    font-size: 0em;
    opacity: 0;
  }
  to
  {
    font-size: 2em;
    opacity: 1;
  }
}


@keyframes hide-menu-header
{
  from
  {
    font-size: 2em;
    opacity: 1;
  }
  to
  {
    font-size: 0em;
    opacity: 0;
  }
}


@media only screen and (max-width: 700px)
{
    #navigation
  {
    display: none;
  }
  
  #hamburger
  {
    display: inline-block;
    color: white;
    font-size: 1.8em;
    position: absolute;
    right: 0;
    margin-right: 5px;
  }
  
  #hamburger:hover
  {
    color: yellow;
    cursor: pointer;
  }
}

@media only screen and (max-width: 400px)
{
    #menu-heading
    {
        font-size: 1.65em;
    }     
}

@media only screen and (max-width: 320px)
{
    #menu-heading
    {
        top: 25px;
        font-size: 1.3em;
    }     
}
 