#wordHolder {
    padding-top: 2%;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#wordHolder div.char {
    height: 9.5%;
    margin-top: 46%;
    width: 5.5%;
}

#wordHolder div.char > span {
    visibility: hidden;
}

#charArea {
    border-radius: 10px;
    display: none;
    height: 75%;
    position: absolute;
    right: 5%;
    top: 5%;
    width: 85%;
    z-index: 1;
}

div.char {
    background-image: url("../../graphX/games/charSoup/charCircle.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 13.5%;
    position: absolute;
    width: 6.75%;
    cursor: pointer;
    text-align: center;
    font-weight: bold;
    border-radius: 100%;
    display: inline-block;
    margin: 1%;
    transition: left 0.2s linear, top 0.2s linear;
}

#wordHolder .char {
    position: relative;
    filter: grayscale(1);
}

.char.red {
    filter: hue-rotate(-100deg) contrast(3);
}

#wordHolder .char.green {
    filter: none;
}