 .botones {
     box-shadow: inset 2px -18px 15px -15px #197214;
     background: linear-gradient(to bottom, #f2f8e6 5%, #6e7f56 100%);
     background-color: #90a16a;
     border-radius: 8px;
     border: 1px solid #758469;
     display: inline-block;
     cursor: pointer;
     color: #0f140b;
     font-family: Verdana;
     font-size: 14px;
     width: 150px;
     font-weight: bold;
     padding: 6px 8px;
     margin: 2px; /*espacio entre botones*/
     margin-left: 25px; 
     
     text-decoration: none;
     text-shadow: 0px 1px 32px #69a317;
 }

 .botones:hover {
     background: linear-gradient(to bottom, #9cf98c 5%, #90a16a 100%);
     background-color: #e0e636;
    color: blue;
 }

 .botones:active {
     position: relative;
     top: 1px;
 }