@charset "utf-8";
/* CSS Document */

.button {
  border-radius: 10px 10px 10px 10px;
  color: white;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 2px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.button1 {
  background-color: white;
  color: green;
  border: 2px solid #4CAF50;
}

.button1:hover {
    background-color: #4CAF50;
    color: white;
    border-bottom: thick;
}

.button2 {
  background-color:#41ac21;
  color: white;
  border: 2px solid #41ac21;
}

.button2:hover {
  background-color: #156F34;
  color: #41ac21;
}

.button3 {
  border-radius: 10px 10px 10px 10px;
  color: #23527c;
  background-color:#fff;
}
