/* dang, man
all game features by [ TRIPLE SKULLS ] @concavetriangle */

#display-areas {
    display: flex;
    justify-content: space-between;
}

.play-area {
    border-style: solid;
    border-width: 1px;
    border-color: grey;
    white-space: nowrap;
    width: 42%
}

.play-area img.dangman {
    display: block;
    margin: auto;
}

#left-zone {
    margin-left: 5%;
}

#left-dangman {
    /* float: right; */
    transform: scaleX(-1);
}

.right-indicator {
    transform: scaleX(-1);
}

#right-zone {
    margin-right: 5%;
}

.arena-images {
    display: flex;
    justify-content: center;
}

.control-area {
    border-style: solid;
    border-width: 1px;
    border-color: #ccccff
}

.letter-buttons {
    display: flex;
    justify-content: space-between;
}
.letter-buttons > img.unused {
    cursor: pointer;
}
.letter-buttons > img.used {
    opacity: 0.5;
}

.letter-guessing {
    display: flex;
    justify-content: center;
}

.letter-guessing img {
    min-width: 0px;
    object-fit: contain;
}

button.avoid-me {
    float: right;
    margin-top: 2em;
    display: block;
}

label.word-guess {
    margin-left: 1em;
    margin-right: 1em;
}