  body{
    font-size: 15px;
  }
  #nav1{
    box-shadow: 0 8px 8px 0 rgba(0, 0.2, 0, 0.2), 0 20px 20px 0 rgba(0, 0.19, 0, 0.19);
    background-image: linear-gradient(to bottom right, rgb(0, 255, 34), rgb(17, 125, 226));
    height: 50px;
    padding-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px; 
  
  }
  #nav2{
    background-color: rgba(238, 255, 0, 0); 
    background-image: linear-gradient(to bottom right, rgb(0, 255, 34), rgb(17, 125, 226)); 
    padding: 10px;
    box-shadow: 5px 10px 50px #0e0d0d;
    height: 50px;
    padding-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
  }
  #btnClean{
    background-color: rgb(238, 255, 0); 
    background-image: linear-gradient(to bottom right, rgb(255, 0, 0), rgb(17, 125, 226)); 
    padding: 10px;
    box-shadow: 0 8px 8px 0 rgba(0, 0.2, 0, 0.2), 0 20px 20px 0 rgba(0, 0.19, 0, 0.19);
  }
  #btnBuy{
    background-color: rgb(238, 255, 0); 
    background-image: linear-gradient(to bottom right, rgb(0, 255, 34), rgb(17, 125, 226)); 
    padding: 10px;
    box-shadow: 0 8px 8px 0 rgba(0, 0.2, 0, 0.2), 0 20px 20px 0 rgba(0, 0.19, 0, 0.19);
  }
 
 /* animasi kekiri*/
.animate-left {
  position: relative;
  -webkit-animation-name: animateleft;
  -webkit-animation-duration: 1s;
  animation-name: animateleft;
  animation-duration: 1s
}

@-webkit-keyframes animateleft {
  from { left:-100px; opacity:0 } 
  to { left:0px; opacity:1 }
}

@keyframes animateleft { 
  from{ left:-100px; opacity:0 } 
  to{ left:0; opacity:1 }
}
#overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #1b1919;
  z-index: 2;
  cursor: pointer;
  -webkit-animation: mymove 5s infinite; 
  animation: mymove 5s infinite;

}




#text{
  position: absolute;
  top: 50%;
  left: 50%;

  color: white;
  transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
}