Hi @Nene16
Good job on the challenge, I have one recommendation:
- Try using grid-layout, it will reduce the amount of CSS code.
.container { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-areas: "a b c" "a d c"; } .card1 { grid-area: a; align-self: center; // this will vertically align the first card, the same can be done on the last card. }
```
1