body {
    font-family: "Lato", sans-serif;
  }
  
  .sidebar {
    height: 80%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: green;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 40px;
  }
  
  .sidebar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 16px;
    color: #f1f1f1;
    display: block;
    transition: 0.3s;
  }
  
  .sidebar a:hover {
    color: #f8f8fa;
    background-color: blue;
  }
  
  .sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 24px;
    margin-left: 50px;
  }
  
  .openbtn {
    font-size: 20px;
    cursor: pointer;
    background-color: green;
    color: white;
    padding: 10px 15px;
    border: none;
	position:fixed; /*trik posisi fix*/
	z-index:9999; /*supaya header selalu muncul di atas seluruh elemen*/
  }
  
  .openbtn:hover {
    background-color: blue;
  }
  
  #main {
    transition: margin-left .5s;
    padding: 16px;
  }
  
  /* 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: 15px;}
    .sidebar a {font-size: 18px;}
  }
  
  .dropbtn {
    background-color: green;
    color: white;
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    cursor: pointer;
  }
  
  .dropbtn:hover, .dropbtn:focus {
    background-color: #b2f8bb;
  }
  
  .dropdown {
    padding: 10px 15px;
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #b2f8bb;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown a:hover {background-color: #ddd;}
  
  .show {display: block;}

  /*LAYOUT SECTION*/
#kepala{
	width:100%;
	background:#6cf7a1;  
	color:blue;
	position:fixed; /*trik posisi fix*/
	z-index:9999; /*supaya header selalu muncul di atas seluruh elemen*/
}
#isi{
	position:relative;
	background:#eee;
	margin:0px 20px;
    padding-top:70px; 
	/*tambahkan padding top yang sedikit lebih besar dari tinggi header, supaya tidak ada bagian yang tertutup header. besarannya dikira-kira saja */
}


#kaki{
	position:relative;
	background:#6cf7a1;
	height:40px;
	line-height:40px;
	color:blue;
	text-align:center;
}

/*CONTENT SECTION*/
a.title{
	color:#f0f0f0; 
	font-weight:bold; 
	text-decoration:none; 
	font-size:30px; 
	line-height:60px; 
	padding:20px;
}
p{
	padding:.5em 1em;
	font-size:20px;
	text-align:justify;
}