

.scratch-zone {
    position: relative;
    display: inline-block;
}

.game-container {
    position: relative;
    display: inline-block;
    max-width: 80%;
	box-shadow: 0 0 20px #0ff;
}

#gameImage {
    width: 100%;
    height: auto;
    display: block;
}

#scratchCanvas {
    position: absolute;
    top: 0;
    left: 0;
}

.answers {
    margin-top: 20px;
}

.gratte-result-ok,
.gratte-result-no {
    margin: 10px auto;
    padding: 10px;
    border-radius: 10px;
    font-weight: bold;
    max-width: 600px;
}

.gratte-result-ok {
    border: 1px dashed lightgreen;
    color: white;
}

.gratte-result-no {
    border: 1px dashed lightcoral;
    color: white;
}

.message {
	margin:15px auto 8px auto;
	font-weight: bold;
	font-size: 14px;
}

#scratchCanvas {
    touch-action: none;
}

