body {
    font-family: 'Montserrat', sans-serif;
}
h1 {
    font-size: clamp(1rem, 4.25vw, 3rem);
}
.no-select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.prior-panel {
    font-size: clamp(1rem, 4.25vw, 2rem);
}
.prior-guess-offset {
    border: none;
    background: none;
}
.prior-copier {
    border: none;
    background: none;
    cursor: pointer;
}
.prior-guess-row {
    display: grid;
    grid-template-columns: 1em 1.5em 1.5em 1.5em 1.5em 1.5em 1em;
    justify-content: center;
    align-content: center;
    grid-gap: 0.2em;
    margin: 0 0 0.2em 0;
}
.prior-guess-letter {
    text-align: center;
    border-radius: 12%;
    padding: 0.075em
}
.guess-panel {
    font-size: clamp(1.25rem, 6vw, 3rem);
    display: grid;
    justify-content: center;
    align-content: center;
    grid-template-columns: repeat(5, 1.25em);
    grid-gap: 0.35em;
    margin: 50px 0;
}
.guess-entry-letter {
    text-align: center;
    border-radius: 12%;
    background-color: hsl(210, 100%, 95%);
    border-color: hsl(210, 100%, 30%);
    border-style: solid;
    border-width: 2px;
    cursor: pointer;
    font-weight: 800;
}
.keyboard-panel {
    font-size: clamp(1rem, 4.5vw, 2rem);
    color: #444477;
}
.keyboard-row {
    display: grid;
    justify-content: center;
    align-content: center;
    grid-gap: 0.25em;
    margin: 8px 0;
}
.keyboard-row-10 {
    grid-template-columns: repeat(10, 1.5em);
}
.keyboard-row-9 {
    grid-template-columns: repeat(9, 1.5em);
}
.keyboard-row-7 {
    grid-template-columns: 2.75em 1.5em 1.5em 1.5em 1.5em 1.5em 1.5em 1.5em 4.25em;
}
.keyboard-key {
    border-color: #dddddd;
    border-style: solid;
    border-width: 1px;
    border-radius: 12%;
    text-align: center;
    cursor: pointer;
}
.with-focus {
    border-color: hsl(210, 100%, 35%);
}
.without-focus {
    border-color: hsl(210, 100%, 90%);
}
.key-disabled {
    color: hsl(240, 27%, 85%)
}
.key-flash {
    background-color: hsl(0, 0%, 75%);
}
.darken {
    background-color: #333;
}
.placed {
    background-color: #88ff88;
}
.placed-flash {
    background-color: hsl(120, 100%, 27%);
}
.included{
    background-color: #FFCC88;
}
.included-flash{
    background-color: hsl(34, 100%, 27%);
}
.excluded {
    background-color: #CCCCCC;
}
.excluded-flash {
    background-color: hsl(0, 0%, 30%);
}
.unknown {
    background-color: #f8f8f8;
}
.unknown-flash {
    background-color: hsl(0, 0%, 47%);
}
.lock-screen {
    height: 100%;
    overflow: hidden;
    width: 100%;
    position: fixed;
}
.vernum {
    position: absolute;
    bottom: 5px;
    font-size: 0.5rem;
}