body {
    margin: 0px;
    font-family: Gill Sans, sans-serif;
    width: 100%;
    font-weight: bold;
}

#title {
    display: flex;
    align-items: center;
    height: 70px;
    background-color: darkslategrey;
    color: white;
    font-size: 1.5rem;
}

#title p {
    margin-left: 20px;
}

.row {
    display: flex;
}

.column {
    flex: 50%;
    padding: 20px;
}

.column:nth-child(1) {
    background-color: lightgray;
}

.column:nth-child(2) {
    background-color: gray
}

table {
    /* text-align: center; */
    border-collapse: collapse;
    border: 2px solid darkslategray;
    background-color: rgb(230,230,230);
}

th {
    font-weight: bold;
}

th:hover {
    cursor: pointer;
}

th.asc:after {
    content: "\2191";
    padding-left: 5px;
}

th.desc:after {
    content: "\2193";
    padding-left: 5px;
}

th, td {
    text-align: left;
    padding: 5px;
    border: 2px solid darkslategray;
}

td {
    font-weight: normal;
}

td:nth-child(3):before {
    content:"$";
}
