.disambiguation {
    top: 0px;
    height: inherit;
    background-color: #1a1a1a;
    border-bottom: 1px solid #333;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 5px 20px;
    box-sizing: border-box;
    height: 39px;
}

.disambiguation .header {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 15px;
    font-family: 'Itim', 'JMH Typewriter', sans-serif;
}

.disambiguation .item {
    opacity: 0.7;
    color: #fff;
    text-decoration: none;
    padding-right: 15px;
    font-size: 14px;
    margin: auto;
    height: 31px;
    width: 88px;
    transition: opacity 0.25s ease;
}

.disambiguation .item:hover {
    opacity: 1;
}

.disambiguation.offset {
    margin-bottom: 20px;
}

.items {
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-evenly;
	align-items: center;
	align-content: space-evenly;
}

/* accessibility: respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .disambiguation .item {
        transition: none;
    }
}

