body{
    height:100vh;
    background-color:#5a855f;
    display:flex;
    justify-content:center;
    align-items:center;
}

#padre{
    border-radius:10px;
    background-color:#475437;
    display:flex;
    align-items:center;
    justify-content:space-around;
    width:100vh;
    height:120vh;
    flex-wrap:wrap;
}

.hijo{
    flex-wrap:wrap;
    display:flex;
    justify-content:center;
    width:30vh;
    height:40vh;
    background-color:#f5f3f3;
    align-items:center;
    border-radius:5px;
}

a{
    text-decoration:none;
    color:rgb(17, 22, 18);
}

a:hover{
    transition:ease 800ms;
    color:orange;
}

#img1{
    width:150px;
    height:150px;
}

#img2{
    width:150px;
    height:150px;
}