
/* page */
.game-title span.icon::before {
    color: var(--medblue);;
}

p.pageSubhead.start {
    margin-bottom: 5px;
    font-size: 18px;
}
.play-area .round #choices {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
	column-gap: 6px;
    overflow: hidden;
    width: 104%;
	padding: 5px 2%;
    margin-left: -2%;
}
.play-area .round #choices .item {
    border-radius: 10px;
	cursor: pointer;
    width: 100%;
    text-transform: capitalize;
    font-family: "Arvo", serif;
    text-align: center;
    font-size: 18px;
	letter-spacing: 0.235px;
	-webkit-tap-highlight-color: transparent;
    padding: 10px 5px;
	line-height: 20px;
}

/* solutions */
span.analogies {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.analogies span.analogy-word-1:after, 
.analogies span.analogy-word-3:after {
    content: ":";
}
.analogies span.analogy-word-1:after, 
.analogies span.analogy-word-2:after, 
.analogies span.analogy-word-3:after {
    padding: 0 3px;
    color: black;
    font-weight: normal;
}
.analogies span.analogy-word-2:after {
    content: "::";
}

/* testing */
.link-1 {
    background: var(--ch-dkblue);
}
.link-2 {
    background: var(--ch-salmon);
}
.link-3 {
    background: var(--ch-coral);
}
.link-4 {
    background: var(--ch-pink);
}
.link-5 {
    background: var(--ch-blue);
}


@media only screen and ((max-width: 440px) or (max-height: 640px)) {
	.play-area .round #choices .item.lg {
		font-size: 14px;
	}
	.play-area .round #choices .item.ml {
		font-size: 14px;
	}
	.play-area .round #choices .item.med {
		font-size: 12px;
	}
	.play-area .round #choices .item.ms {
		font-size: 12px;
	}
	.play-area .round #choices .item.sm {
		font-size: 11px;
	}
	.play-area .round #choices .item.xs {
		font-size: 10px;
	}

} 
