/* The side navigation menu */
  .sidenav {
    height: 100%;
    /* 100% Full-height */
    width: 0;
    /* 0 width - change this with JavaScript */
    position: fixed;
    /* Stay in place */
    z-index: 9999;
    /* Stay on top */
    top: 0;
    /* Stay at the top */
    left: 0;
    background-color: #087089;
    /* Black*/
    overflow-x: hidden;
    /* Disable horizontal scroll */
    padding-top: 60px;
    /* Place content 60px from the top */
    transition: 0.3s;
    /* 0.5 second transition effect to slide in the sidenav */
  }

  #mySidenavBackground {
    height: 100%;
    /* 100% Full-height */
    width: 0;
    /* 0 width - change this with JavaScript */
    position: fixed;
    /* Stay in place */
    z-index: 9998;
    /* Stay on top */
    top: 0;
    /* Stay at the top */
    left: 0;
    background-color: #413c3344;
    /* Black*/
    overflow-x: hidden;
    /* Disable horizontal scroll */
    padding-top: 60px;
    /* Place content 60px from the top */
    /* transition: 0.3s; */
    /* 0.5 second transition effect to slide in the sidenav */
  }

  /* The navigation menu links */
  .sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #d0afaf;
    display: block;
    /* transition: 0.8s; */
  }

  /* When you mouse over the navigation links, change their color */

  /* Hover effect for devices with a mouse */
  @media (hover: hover) {
    .sidenav a:hover {
      color: #818181;
    }
  }

  /* Hover effect for touch devices */
  @media (hover: none) {
    .sidenav a:active {
      background-color: #818181;
    }
  }

  /* Position and style the close button (top right corner) */
  .sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }

  /* Add animation to "slide in" the sidenav */
  @keyframes slideIn {
    from {
      left: -250px;
    }

    to {
      left: 0;
    }
  }

  @keyframes slideOut {
    from {
      left: 0;
    }

    to {
      left: -250px;
    }
  }

  /* Add animation to "slide out" the sidenav */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  @keyframes fadeOut {
    from {
      opacity: 1;
    }

    to {
      opacity: 0;
    }
  }

  /* Set the style of the menu icon */
  #sideButton {
    display: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    position: fixed;
    z-index: 2;
    top: 0px;
    left: 10px;
  }

  #visitor-counter {
    position: fixed;
    bottom: 70px;
    /* width: 100%; */
    /* background-color: #f1f1f1; */
    text-align: center;
    padding: 10px;
  }

  #visitor-counter span {
    font-weight: bold;
    color: #07ff07;
    font-family: Arial, Helvetica, sans-serif;
  }

  #visitor-counter p {
    color: #ffc107;
  }

  /* Set the style of the menu icon on small screens */
  @media screen and (max-width: 642.9px) {
    #sideButton {
      display: block;
    }
  }
