Hey everybody, I'm trying to create a grid layout as seen in the image here where it says "The bright future of Web 3.0". If I have a grid like so:
grid-container {
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(2, 1fr);
}
I know you can have the "Bright Future of Web 3.0" span 2 rows, but this also pushes the button down. How do you create this general layout of one taller item in a column, and in the column next to it 2 elements?