header { background-color: antiquewhite; padding: 20px; } nav { display: grid; grid-template-columns: repeat(5, 1fr); text-align: center; align-items: center; background-color: aliceblue; } main { display: grid; grid-template-columns: repeat(3,1fr); grid-auto-rows: 250px; gap: 30px; } .short { grid-row: span 2; } .short img { width: 600px; height: 400px; } .long img { width: 400px; height: 600px; } footer { text-align: center; border-top: 2px solid gray; }