div.page {
    display: flex;
    flex-flow: column;
    align-items: center;
    flex-grow: 1;
    gap: 0.5rem;
}

div.page > h1 {
    font-size: 2rem;
    text-align: center;
    font-weight: 900;
}

div.info-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.sticky-bottom:empty {
    padding: 0;
}

.sticky-bottom {
    display: flex;
    flex-flow: row;
    gap: 5px;
    position: sticky;
    box-sizing: border-box;
    padding: 10px;
    background-color: var(--bg-medium);
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
    margin-top: 1rem;
}

.sticky-bottom > button {
    flex-grow: 1;
    font-size: 2rem;
}

div.matches-container {
    display: flex;
    flex-flow: column;
}

@media only screen and (max-width: 700px) {
    div.page {
        width: 90%;
    }
}