body{
    
}

#row1 {
    background-color:#4B7737;
}
a {
  font-size:18px;
  display: block;
  color: white;
  padding:1em 2em;
  text-transform: uppercase;
  
}

a:hover{
  text-decoration: none;
  color: white;
}

button {
  margin:0;
  border: 0;
  outline:0;
  padding: 0px;
  border-radius:0.15em;   
  overflow: hidden;
  position: relative;
  background-color: #8CC63F;

}

button .ripple {
    /*width: 100px;
    height: 100px;*/
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    position: absolute;
    
    transform: scale(0);
    animation: ripple 0.6s linear;
}

@keyframes ripple {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

.box {
  padding: 0px;
  margin: 10px 0 0 0;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.3);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.3);
  box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.3);
  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-block;
  border-radius:0.15em;
  background-color: #8CC63F;
}

.box::after {
  content: "";
  /*border-radius: 5px;*/
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.3);
  -moz-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.3);
  box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.3);
  opacity: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.box:hover {
  -webkit-transform: scale(1.15, 1.15);
  transform: scale(1.15, 1.15);
}

.box:hover::after {
    opacity: 1;
}