#modal {
    /* Start out hidden */
    display:none;
    /* Note that lack of height and width specifications cause it to be sized to content*/
    /* However, on a phone which is alreay, narrow it starts wrapping text seemingly prematurely*/
    /* Fixed seems necessary for centering*/
    position: fixed;
    /* Center by first placing the top left corner at center... */
    top: 50%;
    left: 50%;
    /* Then move that position by half the size of the box. */
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    z-index: 1001;
    font-family: 'Arial', sans-serif;
    text-align: center;
}
#modalTitle{
    margin-top: 15px;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}
#modalText{
    font-size: 14px;
}
#modalCloseBtn {
    position: absolute;
    top: 0px;
    right: 5px;
    cursor: pointer;
    font-size: 20px;
}

/* #scoreBlock {
            visibility: hidden;
        } */

#score {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-style: italic;
    /* margin-top: 5px; */
    margin-bottom: 3px;
    color: gray;
    text-align: center;
}

#category {
    font-family: 'Arial', sans-serif;
    /* font-family: 'Protest Riot', cursive; */
    /* text-align: center; */
    width: fit-content;
    border: 1px solid lightblue;
    /* display: flex;
            align-content: center; */
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 2px;
    margin-bottom: 7px;
    /* font-weight: bold; */
    font-size: 18px;
    background: lightcyan;
    color: gray;
}

.fillRow {
    margin-bottom: 5px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    /* font-family: 'Protest Riot', cursive; */

}

.fillChar {
    display: inline-block;
    width: 14px;
    height: 16px;
    /* line-height: 20px; */
    text-align: center;
    /* background-color: lightgray; */
    border-bottom: 2px solid black;
    margin-right: 3px;
    margin-top: 2px;
    font-size: 16px;
    /* keep box from rising when content is blank */
    vertical-align: bottom;
    color: blue;
}

/* Style for the keyboard container */
.keys {
    /* if font unavailable use available cursive */
    font-family: 'Arial', sans-serif;
    /* font-family: 'Protest Riot', cursive; */
    text-align: center;
    /* Set font size to zero that that the space chars created cr/lf don't don't have width */
    font-size: 0;
    margin-top: 5px;
}

/* Style for individual keys */
.key {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: lightcyan;
    border: 1px solid black;
    margin-right: 2px;
    margin-top: 2px;
    cursor: pointer;
    font-size: 20px;
}

/* HOME ICON */
#homeIconContainer {
    display: flex;
    justify-content: center;
    margin-bottom: 3px;
}

#homeIcon:hover #homeIconHouse {
    fill: cyan !important;
}

#homeIconCircle {
    fill: blue !important;
}

#homeIconHouse {
    fill: white !important;
}