body {
    font-family: "Lato", sans-serif;
  }

.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
  }
  
  .sidebar a {
 
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
  }
  
  .sidebar a:hover {
    color: #f1f1f1;
  }
  
  .sidebar .closebtn {
    position: absolute;
    top: 0;
  
    font-size: 36px;
   
  }
  
  .openbtn {
    font-size: 20px;
    cursor: pointer;
    background-color: rgb(252, 252, 252);
    color: rgb(0, 0, 0);
    
    border: none;
  }
  
  .openbtn:hover {
    background-color: #444;
  }
  
  #main {
    transition: margin-left .5s;

  }
  
  /* 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) {
    /*.sidebar {padding-top: 5px;}
    .sidebar a {font-size: 8px;}*/
  }
  