.box{
display:grid;
grid-template-columns: 200px 200px 200px 200px;
grid-template-rows: 200px 200px 200px 200px;
grid-row-gap: 20px;
grid-column-gap: 20px;
}
.item{
background: #CCC;
text-align: center;
line-height: 200px;
}
.item-1 {
grid-area: 2 / 2 / 4 / 4;
line-height: 400px;
background: #CCC;
text-align: center;
font-size: 50px;
}

.box{
display:grid;
grid-template-columns: 200px 200px 200px 200px;
grid-template-rows: 200px 200px 200px 200px;
grid-row-gap: 20px;
grid-column-gap: 20px;
}
.item{
background: #CCC;
text-align: center;
line-height: 200px;
}
.item-1 {
grid-area: 2 / 3 / 2 / 5;
line-height: 200px;
background: #CCC;
text-align: center;
font-size: 50px;
}

.box{
display:grid;
grid-template-columns: 200px 200px 200px 200px;
grid-template-rows: 200px 200px 200px 200px;
grid-row-gap: 20px;
grid-column-gap: 20px;
}
.item{
background: #CCC;
text-align: center;
font-size: 50px;
}
.item-1 {
grid-area: 1 / 2 / 2 / 3;
background: #CCC;
text-align: center;
font-size: 50px;
}
.item-2{
line-height: 150px;
}
.item-3{
line-height: 200px;
}
