#contenido{
    width: 100%;
    height: 50vh;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    
}

.divEnlace{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 20px;
    border-radius: 20px;
    background-color: #4ca452;
    height: 350px;
    width: 300px;
    color: white;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.divEnlace:hover{
    transform: scale(1.05);
}

.divEnlace > img{
    border-radius: 20px;
}