.cuerpo{
    background-color: rgb(107, 107, 107);
}
.box{
    height: 100px;
    width: 100px;
}
.box-1{
    background-color: deeppink;
    position: relative;
    top: 100px;
    left: 100px;
}
.box-2{
    background-color: forestgreen;
}
.box-3{
    background-color: gold;
    position: relative;
    top: 50px;
}
.box-4{
    background-color: orangered;
    position: relative;
}
.box-5{
    background-color: rgb(157, 255, 0);
    position: relative;
    top: 100px;
    left: 150px;
}
.box-6{
    background-color: rgb(255, 0, 0);
    position: relative;
}
.box-7{
    background-color: rgb(20, 228, 255);
    position: relative;
    left: 100px;
    right: 50px;
}
.box-8{
    background-color: orchid;
    position: relative;
}