
.py-4{
    bottom: 0px;
    grid-column: 1/5;
}



#contenido{
    width: 100%;
    height: 50vh;
    display: grid;
    grid-template-columns: repeat(4,1fr);    
    grid-row-gap: 30px;
    justify-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;
}