body {
    margin: 10px auto;
    padding: 10px;
    font-size: 1.5em;
    border: 2px solid black;
    border-radius: 15px;
    max-width: 900px;
    background: lightcyan;
}

#noscript {
    font-weight: 900;
    border: 3px solid black;
    background: lightcoral;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    color: black;
    font-size: 1.2em;
    text-align: center;
}

#matches {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 100px 100px 100px 100px;
    padding-top: 10px;
    align-items: center;
}

#pagination {
    text-align: center;
    border: solid black 1px;
    border-radius: 10px;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
}

.match {
    margin: 1px auto;
    padding: 1px;
    max-width: 95%;
    max-height: 95%;
}

.currentPage {
    font-weight: 600;
}

.pageChar {
    margin: 0 5px 0 5px;
}

.direction {
    font-weight: 1000;
    font-size: 1.2em;
    margin: 0 5px 0 5px;
}

@media only screen and (max-width: 900px) {
    #matches {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 100px 100px 100px 100px 100px 100px 100px 100px;
    }
}