.menuCentral{
    display: flex;
    width:100%;
    justify-content: space-evenly;
    padding:20px;
    flex-wrap: wrap;
    row-gap: 20px;
    
}
.menuCentral a{
    height: 150px;
    width:  150px;
    border: thin solid #ccc;
    padding:10px;
    text-align: center;
    border-radius: 15px;
    background-color: white;
    display:flex;
    margin-left:10px;
    margin-right:10px;
    flex-direction: column;
    box-shadow:  1px 8px 20px graytext, 2px 1px 5px #ccc inset;
    
}
.menuCentral a:hover{
    text-decoration: none;
    color: blue;
}
.menuCentral a titulo{
    font-weight: bold;
    font-size: 18px;
    min-height: 40px;
    margin-bottom: 4px;
    text-decoration: underline;
}
.menuCentral a descripcion{
    margin-top: 4px;
    font-size: 14px;
}