body {
    display: grid;
    grid-template-rows: auto 1fr;

    width: 100dvw;
    height: 100dvh;
}

main {
    width: 100%;
    height: 100%;
}

.selection {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;

    justify-content: center;
    align-items: flex-start;

    width: 100%;
    height: 100%;

    overflow: scroll;
    padding: 1rem 2rem;
}

.selection a {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 10px;

    width: 150px;
    height: 150px;
    padding: 0 10px;

    font-family: 'Jersey 10';
    font-size: 20pt;

    text-wrap: wrap;
    text-align: center;

    text-decoration: none;
    background-color: #38b764;
    color: white;

    border-radius: 4px;
}

.selection a:hover {
    background-color: #4ecf7c;
    color: white;
}

.selection a:focus {
    background-color: black;
    border: 4px solid white;
    filter: invert(1);
}

.selection a img {
    --scale: 4;

    display: block;
    width: calc(16px * var(--scale));
    height: calc(16px * var(--scale));
}
