body{
    padding: 0;
    margin: 0;
    background-color: rgb(251, 204, 204);
}
.box{
    width: 300px;
    height: 300px;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.box div{
    width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-color: rgb(176, 176, 176);
    display: flex;
    float: left;
}
p{
    text-align: center;
    font-weight: bold;
    line-height: 20px;
}