body {
    margin: 0;
    padding: 0;
    background: rgb(5, 45, 60);
    background: radial-gradient(circle, rgba(5, 45, 60, 1) 0%, rgba(0, 32, 70, 1) 73%);
    color: white;
    font-size: 18px;
}

table {
    border-collapse: collapse;
    border: 2px solid rgb(140 140 140);
    font-family: sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

thead,
tfoot {
    background-color: rgb(48, 51, 53);
}

tbody>tr:nth-of-type(even) {
    background-color: rgb(5, 45, 60);
}

tfoot th {
    text-align: right;
}

tfoot td {
    font-weight: bold;
}

th,
td {
    border: 1px solid rgb(160 160 160);
    padding: 8px 10px;
}

#root {
    display: flex;
    padding: 30px 100px;
}

#update-display {
    margin-left: auto;
}

#main-display>h1 {
    margin-bottom: 2px;
}

h3 {
    margin: 0px;
}

button{

}

button:hover{
    cursor: pointer;
}