#game_area {
    width: 80%;
    min-height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.task_text {
    width: 100%;
}

/* Differences */
#diff_container {
    width: 100%;
    height: 60%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin: 1%;
}

#diff1_container,
#diff2_container {
    width: 35vw;
    height: 35vw;
    max-height: 100%;
    max-width: 50%;
    position: relative;

    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

img {
    width: 100%;
    height: 100%;
}

#position_grid {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

.grid_row {
    width: 100%;
    height: 5%;
    display: flex;
    flex-direction: row;
}

.grid_element {
    width: 5%;
    height: 100%;
    /* border: 1px solid black; */
}

.grid_element:hover {
    border: 2px solid #FF0000;
}

.circled {
    border: 2px solid #FF0000;
    border-radius: 50%;
}