@font-face { font-family: Eurostile; src: url(../fonts/eurostile.ttf) } html { font-family: Eurostile, Arial, Helvetica, sans-serif; color: white; } body { background-color: #191818; margin: 0; width: 500px; height: 500px; } .container { display: flex; flex-direction: column; align-items: center; height: 90vh; width: 90vw; margin: 5vw; } .table-container { width: 100%; overflow-y: auto; flex-grow: 1; } table { width: 100%; background-color: #242424; } button { font-family: Eurostile, Arial, Helvetica, sans-serif; font-size: large; width: 100%; flex-basis: 40px; margin-bottom: 5px; border-radius: 5px; background-color: lightcoral; color: black; } button:hover { background-color: rgb(238, 104, 104); cursor: pointer; } tbody>tr:hover { background-color: #2c2c2c; } th { text-align: start; }