﻿/* Style the links inside the sidenav */
#mySidenav a {
  position: fixed; /* Position them relative to the browser window */
  left: -85px; /* Position them outside of the screen */
  transition: 0.3s; /* Add transition on hover */
  /* padding: 15px; 15px padding */
  width: 140px; /* Set a specific width */
  text-decoration: none; /* Remove underline */
  /*font-size: 20px;*/ /* Increase font size */
  color: white; /* White text color */
  border-radius: 0 50px 50px 0; /* Rounded corners on the top right and bottom right side */
  /*top: 100px;*/
  z-index: 100;
  white-space: nowrap;
  padding: 10px !important;
}

#mySidenav a:hover {
  left: 0; /* On mouse-over, make the elements appear as they should */
}

/* The about link: 20px from the top with a green background */
#about {
  top: 140px;
  background-color: #b08f07;
}

#whassup {
  top: 200px;
  background-color: #b08f07; /* Blue */
  /*width: 135px !important;*/
}

#mySidenav a > img { padding-left: 5px;}

/* The side navigation menu */
.sidenav1 {
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 1; /* Stay on top */
  top: 60px;
  left: 0;
  background-color: #b08f07; /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 35px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav1 */
  z-index: 101;
  border-radius: 0 5px 5px 0; /* Rounded corners on the top right and bottom right side */
}

/* The navigation menu links */
.sidenav1 a {
  padding: 8px 8px 8px 8px;
  text-decoration: none;
  font-size: 1.5rem;
  color: #ffffff;
  display: block;
  transition: 0.3s
}

/* When you mouse over the navigation links, change their color */
.sidenav1 a:hover, .offcanvas a:focus{
  color: #f1f1f1;
}

  .sidenav1 div {
    padding: 8px 8px 8px 8px;
    text-decoration: none;
    font-size: 1.0rem;
    color: #000000;
    display: block;
    transition: 0.3s;
    line-height: 1.5rem;
  }

/* Position and style the close button (top right corner) */
  .sidenav1 .closebtn {
    position: absolute;
    top: 0;
    right: 5px;
    font-size: 2.5rem;
    /*margin-left: 50px;*/
    background-color: #b08f07;
    width: 40px;
    height: 40px;
  }

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
/*#form1 {
  transition: margin-left .5s;
  padding: 20px;
}*/

/* On smaller screens, where height is less than 450px, change the style of the sidenav1 (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidenav1 {padding-top: 15px;}
  .sidenav1 a {font-size: 1rem;}
} 