.typing {
    position: fixed;
    left: 50%;
    bottom: 24px;
    z-index: 6;
    width: min(560px, calc(100% - 28px));
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 20px);
    transition: opacity .2s, transform .2s;
}

.typing.open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.restart-top {
    display: block;
    margin: 10px 0 0 auto;
}

.player::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 7px solid #062019;
    transform: translate(-25%, -50%) rotate(var(--heading, 0rad));
    transform-origin: 25% 50%;
    filter: drop-shadow(0 0 2px #effff5);
}

.player::before {
    content: '';
    position: absolute;
    inset: 2px;
    border: 1px solid #effff5;
    border-radius: 50%;
    opacity: .75;
}
