body {
    font-family: 'Nunito', Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(to top right, #111112 0, #222223) no-repeat fixed;
    color: #eee;
}

header, footer {
    color: #fff;
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 0, 10, .3);
}

footer {
    padding: 1rem;
}

h1 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
    font-weight: bolder;
}
h2 {
    margin-top: 2rem;
    text-transform: uppercase;
    font-weight: bolder;
}

.container {
    flex: 1;
    padding: 30px 20px;
    text-align: center;
}

table {
    width: 900px;
    max-width: 100%;
    border-collapse: collapse;
    margin: 30px auto;
    border-radius: 20px;
    overflow: hidden;
}


@media only screen and (min-width: 600px) {
.match-title {
    width: 150px;
    max-width: 150px;
}
}
@media only screen and (max-width: 599px) {

    .match-title span {
        display: none !important;
    }
    table td,
    table th {
        font-size: 20px !important;
        letter-spacing: 0;
    }
}
th, td {
    border: 0;
    color: #eee;
    padding: 15px 25px;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
}

th {
    font-weight: bold;
    font-size: 20px;
}

td {
    font-size: 30px;
    letter-spacing: 3px;
}

tr {
    background: none;
    transition: background .15s ease-out;
    border-bottom: 6px solid rgba(51, 51, 51, .5);
}
tbody tr {
    cursor: default;
    user-select: none;
    border-bottom: 2px solid rgba(51, 51, 51, .5);
}

tbody tr:last-child {
    border: none;
}

th:nth-child(1), td:nth-child(1) {
    background: rgba(68, 68, 73, .3);
    max-width: 200px;
    word-wrap: break-word;
    letter-spacing: normal;
    font-weight: normal;
}

th:nth-child(2), td:nth-child(2) {
    background: rgba(17, 17, 17, .8);
}

th:nth-child(3), td:nth-child(3) {
    background: rgba(0, 0, 0, .8);
}
#previousTables table {
    margin-bottom: 4rem;
}
#previousTables table th,
#previousTables table td {
    font-size: 24px;
    letter-spacing: 0;
}
button.show-previous,
footer a {
    background: none;
    border: 0;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    padding: 15px 10px;
    font-weight: bold;
    font-size: 14px;
}
button.show-previous,
footer a span {
    color: lightblue;
    border-bottom: 1px solid transparent;
    transition: color .15s ease-out, border .15s ease-out;
}

footer a:hover span{
    border-bottom: 1px solid #fff;
    color: #fff;
}

button.show-previous {
    margin-bottom: 2rem;
    cursor: pointer;
    padding:10px 25px !important;
    border:1px solid rgba(255,255,255,.3);
}
button.show-previous:hover {
    color: #fff;
    border:1px solid rgba(255,255,255,.5);
}
.selected {
    background: #fff;
}
.selected td:first-child{
    color: #000;
    font-weight: bold;
}
#previousTables .selected {
    background: rgba(255,255,255,.3);
}
#previousTables .selected td:first-child {
    color: #fff;
}


:root {
    --angle: 50deg;
    --duration: 0.3s;
    --cool-dark-gray: #5A6675;
    --cool-hover-gray: #707A8D;
    --cool-active-gray: #8D97A4;
}

.btn {
    width: 200px;
    display: inline-block;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    background: none;
    border-radius: 0;
    border: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--duration) ease;
    font-family: 'Nunito', sans-serif;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--cool-dark-gray); /* Cool Dark Gray */
    background: linear-gradient(45deg, #BCC3CC, var(--cool-dark-gray)); /* Cool Gray to Cool Dark Gray */

    z-index: -1;
    transform: skewX(var(--angle));
    transition: transform var(--duration);
}
.btn:active::before,
.btn:focus::before {
    background: var(--cool-active-gray); /* Active Color */
}


.btn:hover::before {
    background: var(--cool-hover-gray); /* Hover Color */
}

.btn:focus {
    outline: none;
}

