*{
        box-sizing: border-box;
}

body{
        background-color: aquamarine;
}

#padre{
        width: 90%;
        height: 300px;
        margin: 10px auto;
        background-color: blue;
        padding: 16px;
        justify-content: center;

}

#hijo{
        width: 100%;
        height: 268px;
        background-color: rgb(100, 255, 100);
        padding: 16px;
}

#nieto{
        width: 100%;
        height: 236px;
        background-color: rgb(10, 25, 100);
        padding: 16px;
}

#biznieto{
        width: 100%;
        height: 204px;
        background-color: rgb(80, 25, 100);
        padding: 16px;
}

#tataranieto{
        width: 100%;
        height: 172px;
        background-color: rgb(80, 90, 100);
}