body {
    font-family: "Titillium Web", sans-serif;
    display: grid;
    column-gap: 2rem;
    grid-template-columns: max-content 1fr;
}

img#icon {
    grid-column: 1;
    grid-row: 1;
    width: 90%;
    height: 90%;
    align-self: center;
    justify-self: center;
}

section.header {
    grid-column: 2;
    grid-row: 1;
}

nav {
    grid-column: 1;
    grid-row: 2;
}

table {
    grid-column: 2;
    grid-row: 2;
    justify-self: stretch;
}

nav#sets-list>h3 {
    text-align: center;
    margin: 0;
}

nav#sets-list>ol {
    list-style: none;
    margin-top: 0.5rem;
    padding: 0;
    padding-inline-start: 1rem;
}

nav#sets-list>ol>li.selected::marker {
    content: "▶ ";
}

.button-link {
    border: 1px solid;
    border-radius: 3px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.column-header {
    font-weight: bolder;
}

section.header>* {
    flex-grow: 1;
}

.current {
    margin: 1rem;
    padding: 1rem;
    border: 1px solid;
    border-radius: 5px;
    display: grid;
    column-gap: 0.75rem;
    grid-template-columns: repeat(2, max-content);
}

.hidden {
    display: none;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

@keyframes fadeOut {
    0% {
        opacity: 1.0;
    }

    100% {
        opacity: 0.0;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

.fadeIn {
    animation-duration: 3s;
    animation-name: fadeIn;
}

.fadeOut {
    animation-duration: 1s;
    animation-name: fadeOut;
}