body{
  background-color:black;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;

  position: absolute;
  align-items: center;
  justify-content: center;
}
button{
  background-color: grey;
  border: none;
  font-size: 16px;
  padding: 10px 16px;
  color: white;
  /* opacity: 0.5; */
  /* text-align: center;
  text-decoration: none;
  display: inline-block;
  
  padding: 15px 32px; */
}
button:hover{
  background: #555555;
  border-radius: 50px;
}
button{
  border-radius: 50px; 
}
#notification {
  background: floralwhite;
/*   width: 100px; */
/*   height:200px; */
  z-index: 999;
  position:absolute;
/*   top:0; */
  text-align:center;
  opacity:0;
}
a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
  text-decoration: underline;
}

button:hover{
  background: #555555;
  border-radius: 50px;
}
button{
  border-radius: 50px; 
}
#on_button{
/*   position: fixed; */
/*   bottom: 0; */
}
#off_button{
  position: fixed;
  bottom: 0;
  right: 0;
}

/* 
body{
    background-color:black;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;

    position: absolute;
    align-items: center;
  }
 
  #ProgressBar {
    width: 99%;
    height: 30px;
    border: 1px solid black;
    border-radius: 7px;
    padding-top: 2px;
  
    
      }  
  #Progress {
    width: 100%;
    background-color: #1cf28c;
    height: 100%;
    border-radius: 7px;
   

    border-color: white;
    
    animation-name: progressBar;
    animation-iteration-count: 1;
    animation-duration: 5s;
  }
  
  @keyframes progressBar {
    0% {
      width: 10%;
    }
    
    100% {
      width: 100%;
      border-radius: 7px;
    }
  }
   */
