.button {
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 5px 12px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
    height:35px;
    width:80px;
}

.button1 {
  background-color: white; 
  color: black; 
  border: 1px solid #2DC3BF;
}

.button1:hover {
  background-color: #2DC3BF;
  color: white;
}