/* Animated Button Green Hover */
/* Define the animated button style */
.button-green-animated-small {
  display: inline-block;
  padding: 20px;
  width: 280px;
  font-size: 22px;
  font-family: arial;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  outline: none;
  border: solid 4px #336666;
  border-radius: 8px;
  background-color: #336666;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Define the hover effect */
.button-green-animated-small:hover {
  background-color: #ffffff;
  width: 265px;
  color: #336666
  font-size: 25px;
  font-weight: bold;
  border: solid 4px #336666;
  border-radius: 8px;
  filter: drop-shadow(5px 5px 2px rgba(152, 152, 152, 0.5));
}