.sidenav {
    height: calc(100% - 60px ); /* 100% Full-height */
    width: 250; /* 0 width - change this with JavaScript */

    position:fixed; /* Stay in place */
    z-index: 10000; /* Stay on top */
    top: 0; /* Stay at the top */
    left: -250;
    background-color: rgba(41, 41, 41, 0.98); /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
  }
  
  /* The navigation menu links */
  .sidenav a {
    padding: 8px 8px 15px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #acacac;
    display: block;
    transition: 0.3s;
  }
  
  /* When you mouse over the navigation links, change their color */
  .sidenav a:hover {
    color: #f1f1f1;
  }
  
  /* Position and style the close button (top right corner) */
  .sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;  
    margin-left: 50px;
  }
  
  /* Style page content - use this if you want to push the page content to the right when you open the side navigation */

  
  /* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
  @media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
  }


  #navbar {
    background-color: rgba(204, 204, 204, 0.5);
    position: fixed;
    top: 0;
    left: -8;
    height: 81px; 
    min-width: 1740px;   
    width: calc(100% + 8px);
    display: block;
    transition: top 0.3s;
    
  }

  
  #navbar a {
    float: left;
    margin-left: 100px;
    display: block;
    color: #000000;
    text-align: center; 
    padding: 15px;
    line-height: 50px;
    font-family: Georgia; 
    text-decoration: none;
    font-size: 35px;
    transition: background-color 500ms linear;
  }
  
  #navbar a:hover {
    background-color: rgb(146, 146, 146);
    
    color: black;
  }

  @media only screen and (max-width: 1145px) {


    .ssideNav{
      display: block; 
    }

    .topNav{
      display: none;
    }

  }

  @media only screen and (min-width: 1146px) {   

    .ssideNav{
      display: none;
    }

    .topNav{
      display: block;
    }

  }


  @media only screen and (max-width: 1517px) {   
    #navbar a{
      font-size: 30px;
      padding: 10px;
    }
    
  }

  @media only screen and (max-width: 1294px) {   
    #navbar a{
      font-size: 25px;
      padding: 7px;
    }
    
  }

