#storyHeader,
#story {
    padding-left: 2em;
    padding-right: 2em;
}

#storyHeader {
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: var(--pico-background-color);
    opacity: .96;
}

#story p {
    animation: fadeInAnim var(--pico-transition);
    transition: all var(--pico-transition);
}

#controls {
    font-size: .8em;
    text-align: right;
    position: relative;
    right: 14px;
    user-select: none;
    padding-bottom: 10px;
}

#controls [disabled] {
    color: #bbb;
}

#controls>*:not(:last-child):after {
    content: " | ";
}

.choice {
    text-align: center;
    line-height: 1.7em;
}

/* 
  Class applied to first choice
*/
:not(.choice)+.choice {
    padding-top: 1em;
}