#calculator { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.3rem; } label[for="expr"] { display: none; } #input-row { grid-column: 1 / 5; display: flex; flex-flow: wrap; } #expr { flex: 4 auto; min-width: 0; font-size: xx-large; } #modulus-box { flex: auto; display: flex; flex-flow: wrap; justify-content: end; min-width: 0; } #modulus-label { flex: initial; font-size: xx-large; margin: auto 0.3rem; } #modulus { flex: auto; min-width: 0; font-size: xx-large; } #result { grid-column: 1 / 5; border: 1px solid gray; text-align: right; min-height: 1lh; font-size: xx-large; } button { font-size: xx-large; } #extra-buttons { grid-column: 1 / 5; display: grid; grid-template-columns: subgrid; gap: inherit; } #main-buttons { grid-column: 1 / 5; display: grid; grid-template-columns: subgrid; gap: inherit; } #numerals { grid-column: 1 / 4; display: grid; grid-template-columns: subgrid; gap: inherit; } #backspace { grid-column: 3; } #operators { grid-column: 4; grid-row: 1 / 3; display: grid; grid-template-columns: subgrid; gap: inherit; }