@import 'common.css'; html, body, main { height: 100%; width: 100%; } main { display: grid; padding: 1rem; gap: 1rem; grid-template: 1fr 3fr / 1fr 1fr; & > * { background-color: grey; border-radius: 1rem; } & > section { display: grid; padding: 2rem; gap: 1rem; grid-template: 1fr 1fr / 1fr 1fr; & > * { background-color: lightgrey; border-radius: 1rem; &:nth-child(1) { grid-column: 1/3; } } } }