  .button {
  display: inline-block;
  padding: 10px 24px;;
  background-color: white;
  color: black;
  font-size: 24px;
  text-align: center;
  text-decoration: none;
  border: 2px solid #bf5700;
  border-radius: 2px;
  cursor: pointer;
  width: 55px;
  margin-right: 2px; /* Add margin to create space between buttons */
  margin-bottom: 2px; /* Add margin to create space between buttons */
  transition-duration: 0.4s;
  }

  .button:hover {
  background-color: #bf5700; 
  color: white;
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
  }
