* {
    box-sizing: border-box;
}
body{
    background-color: blueviolet;
}
#abuelo{
    width: 100%;
    height: 250px;
    background-color: lightblue;
    display: flex;
    flex-wrap: nowrap;
    padding: 10px;

    justify-content: space-evenly;
    align-items: center;


}
#padre{
    width: 100%;
    height: 230px;
    background-color: red;
    padding: 10px;
}
#hijo{
    width: 100%;
    height: 210px;
    background-color: blue;
    padding: 10px;
}
#nieto{
    width: 100%;
    height: 190px;
    background-color: orange;
    padding: 10px;
}
#bisnieto{
    width: 100%;
    height: 170px;
    background-color: greenyellow;
    padding: 10px;
}