.previous { margin: auto; width: 200px; height: 200px; border: solid; align: center; text-align: center; grid-column: 1; background-color: grey; } .current { margin: auto; width: 300px; height:300px; border: solid; text-align: center; grid-column: 2; background-color: grey; } .next { margin: auto; width: 200px; height: 200px; border: solid; align: center; text-align: center; grid-column: 3; background-color: grey; } .container { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-gap: 10px; grid-template-rows: 1fr; } .step-count { text-align: center; }