@font-face {
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/rubik/v28/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-NYiFV0U1.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Rubik !important;
}

body,
html {
    height: 100%;
    background: #1c1c1c;
}

h2 {
    margin: 0
}

body {
    width: 100%;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    padding: 15px 0;
}

main {
    width: 800px
}

header {
    color: white;
    font-size: 2rem;
    text-align: center;
    padding: 1rem 0;
}

section {
    background-color: #fff;
    border-radius: 1rem;
}

table {
    width: 100%
}

td {
    padding-left: 20px
}

table td {
    padding-top: 16px;
    padding-bottom: 16px
}

table {
    padding: 10px;
}

td {
    font-size: 15px;
    color: gray;
    line-height: 1.4;
    background-color: #f7f7f7
}

table tr {
    overflow: hidden;
    border-bottom: 10px solid #fff;
    border-radius: 10px
}

table td {
    border: solid 1px transparent;
    border-style: solid none;
    padding-top: 10px;
    padding-bottom: 10px
}

table td:first-child {
    border-left-style: solid;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px
}

table td:last-child {
    border-right-style: solid;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px
}

tr:hover td {
    background-color: #ebebeb;
    cursor: pointer
}

section {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #161616;
}

::-webkit-scrollbar-thumb:hover {
    background: #000;
}