Snack box
Chips
Peanut
Seaweed
.snack-box {
display: grid;
grid-gap: 10px;
grid-template-areas:
"top top"
"bottom1 bottom2";
grid-template-columns: 1fr 2fr;
}
.seaweed {
grid-area: top;
}
.chips {
grid-area: bottom1;
}
.peanut {
grid-area: bottom2;
}