@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css"); * { -webkit-font-smoothing: antialiased; box-sizing: border-box; } html, body { margin: 0px; height: 100%; } body { display: flex; flex-direction: column; } header { display: flex; padding: 16px; } .title { flex-grow: 1; } .content { flex-grow: 1; z-index: 2; height: auto; min-height: 400px; left: 0px; right: 0px; background-color: rgb(225, 234, 214); border-radius: 16px; box-shadow: 0px 5px 50px #e5e0dd; padding: 16px; margin-bottom: 64px; overflow-y: scroll; } footer { z-index: 3; position: fixed; bottom: 0px; left: 0px; right: 0px; display: flex; height: 64px; padding: 8px 16px; align-items: center; background-color: rgb(250, 234, 234); } .polls { display: grid; grid-template-rows: 100%; grid-template-columns: 1fr 1fr; }