.timerbutton{padding:10px;
}

.timerdiv{ width: 70px;
  height: 40px;
  
  background: #FFB6C1;
  transition: background-color 6s ease-out 200ms ;
  transform:translatex(40px);
}
.timerdiv:hover {
  background-color: #000000;
}



button{ 
  
  background: forestgreen;//FFB6C1
  transition: background-color 6s ease-out 200ms ;
  
}
button:hover {
  background-color: fuchsia;
  transform:rotate(10deg)
}
