body {
    font: 1rem 'Fira Sans', sans-serif;
    background: hsla(0, 0%, 86%, 1);
}
h1 {
    text-align: center;
}
h2 {
    font-size: 1.3rem;
}
h3 {
    font-size: 1rem;
}
footer {
    font-size: 0.8rem;
}
details.todos {
    display: none;
}
.smaller {
    font-size: 0.8rem;
}
@media print {
    body {
	background: unset;
    }
}
details:not([open]) > summary {
    cursor: zoom-in;
}
details:is([open]) > summary {
    cursor: zoom-out;
}
.todos {
    display: none;
}
.underconstruction {
    text-align: center;
    border: 2px solid black;
    padding: 10px;
    background: white;
    border-radius: 5px;
    box-shadow: 10px 10px 10px yellow;
}
/* Links that I want to "hide" because they're not really finished yet. */
.hiddenlink {
    text-decoration: none;
    color: inherit;
    cursor: default;
}
.column1 ul {
    margin: 0 0 0 2rem;
    padding: 0;
}
.column1 > ul > li {
    break-inside: avoid;
}
.column1 {
    /* outline: 1px solid red; */
    max-width: 60rem;
    column-width: 20rem;
    margin-top: 0.3em;
    column-gap: 0;
    /* column-rule: 4px dotted rgb(79, 185, 227); */
}
/* Colors from https://developer.gnome.org/hig/reference/palette.html */
span.tag {
    font-size: 0.6rem;
    border-radius: 2px;
    margin: 0px;
    padding: 1px;
    background: #99c1f1;
    border: 1px solid #1a5fb4;
}
span.tag + span.tag {
    margin-left: 0.2em;
}
.stream {
    font-family: monospace;
    font-size: 0.8rem;
    background: #f6f5f4;
    border-radius: 3px;
}
.stream:link {
    /* text-decoration: dotted underline black; */
}
.audioplayer {
    position: fixed;
    bottom: 0;
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.audioplayer audio:not([src]) {
    filter: blur(2px) grayscale(100%);
    cursor: not-allowed;
}
#stopbutton {
    margin-left: 10px;
    background: white;
    cursor: pointer;
}
jmm-button > button {
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 2px;
}
jmm-button > button:hover {
    background: revert;
}
jmm-button[data-playing] > button {
    background: #2ec27e;
}
