.contenedor{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;

    background-color: rgba(222, 229, 236, 0.39);
    padding: 4em 0;
    margin-bottom: 2em;
    background-image: url('./../imagenesImportantes/imagenesServicios/home-page-1.jpg');
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
}
.elemento{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 10em;
    height: 10em;
    background-color: rgb(48, 185, 101);
    border-radius: 50%;
    border: 1em solid rgb(255, 255, 255);
    transition: background-color .5s ease 0s;
    font-size: 1em;
    font-weight: bold;
    text-shadow: 2px 2px 2px black;
    color: rgb(255, 255, 255);
    text-decoration: none;
}
.elemento:hover{
    background-color: rgb(44, 219, 111);
    text-shadow: 0.2em 0.2em 0.2em black;
}