*{
    box-sizing: border-box;
}


body{
    background-color: rgb(245, 245, 4)
}

#padre{
    width: 100%;
    height: 250px;
    background-color: rgb(1, 248, 1);
    display: flex;
    flex-wrap: nowrap;
    padding: 10px;
}

#hijo{
    width: 100%;
    height: 230px;
    background-color: rgb(7, 139, 247);
    padding: 10px;
}

#nieto{
    width: 100%;
    height: 210px;
    background-color: rgb(241, 97, 0);
    padding: 10px;
}

#bisnieto{
    width: 100%;
    height: 190px;
    background-color: rgb(253, 9, 9);
}