#board { display: contents; } #answers { display: contents; } #game { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: .5em; } .box { border: 1px darkslategrey dotted; border-radius: 4px; word-break: break-all; text-overflow: ellipsis; padding-top: 2em; padding-bottom: 2em; text-align: center; font-family: Cantarell; cursor: pointer; user-select: none; } .box:hover { border: 1px darkslategrey solid; background: #f7f1e4; } .selected { border: 1px darkslategrey solid; background: #cec9bd !important; } #url { text-overflow: ellipsis; white-space: nowrap; overflow: hidden; } .answer { grid-column-start: 1; grid-column-end: 5; border: 1px darkslategrey dotted; border-radius: 4px; word-break: break-all; text-overflow: ellipsis; padding-top: 2em; padding-bottom: 2em; text-align: center; font-family: Cantarell; } .answerline { font-weight: bold; font-size: large; }