.boton{
    margin: 5px;
    padding: 10px;
    border-radius: 20px 1px 20px 1px;
    background:#09d72f ; 
    color :black;
    transition-duration: .2s;
}

.boton:hover{
    
    border-radius: 1px 20px 1px 20px;
    background:#079c22 ; 
    color :black;
    
}


/***********MEDIA QUERIES********/

@media (min-width: 576px) and (max-with: 768px) {
    /*Tablet-sm*/
}
@media (min-width: 768px) and (max-with: 992px) {
    /*Laptop-md*/
}
@media (min-width: 992px) and (max-with: 1200px) {
    /*Escritorio-lg*/
}
@media (min-width: 1200px) and (max-with: 1400px) {
    /*Escritorio grande-xl*/
}
@media (min-width: 1400px) {
    /*Escritorio muy grande-xxl*/
}
