.btn:last-child { margin-bottom: 0; } .generic-button { display: grid; place-items: center; border: 3px solid #222; color: white; border-radius: 15px; font-size: 1.6em; width: 100%; transition: transform 0.05s; user-select: none; } .generic-button:enabled:active { transform: scale(0.8); box-shadow: inset 0px 0px 5px 0px black; } .generic-button:disabled { filter: grayscale(0.8); } .btn { composes: generic-button; --page-size-without-margins: ( 100svh - (var(--rows-count) + 1) * var(--btn-gap) ); --btn-height: calc(var(--page-size-without-margins) / var(--rows-count)); height: var(--btn-height); }