.calc-output {} .calc-input { display: flex; width: 200px; flex-direction: column; } .calc-input>.calc-number-inputs, .calc-input>.calc-result { width: 175px; } .calc-input>.calc-operators { position: relative; bottom: 80px; width: 25px; align-self: end; } .calc-result { display: grid; justify-content: stretch; grid-template-columns: auto auto auto; } .calc-operators { display: grid; grid-template-columns: 25px; justify-content: end; position: relative; top: -20px; } .calc-number-inputs { display: grid; justify-items: stretch; grid-template-columns: auto auto auto; width: 175px; position: relative; bottom: 100px; }