body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 20px;
    position: relative;
}

.desc {
	
}

#solution {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 1px; 
}

#solution .slot {
    height: 30vh;
    border: 1px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    background-color: #e0e0e0;
}

#play-area {
    margin-top: 2vh;
    position: relative;
    height: 68vh; /* Spielbereich für die Buchstaben */
    border: 1px solid #ccc; /* Optional, um den Bereich zu sehen */
}

.letter {
	transition-duration: 0.2s;
    width: 50px;
    height: 50px;
    background-color: #f0c040;
	box-shadow: inset 0px 0px 5px  white;
    color: black;
	text-shadow: 1px 1px 4px white;
	font-family: sans-serif;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 5px;
	border: 1px solid black; 
    user-select: none;
    position: absolute; /* Positionierung absolut, um sie frei bewegen zu können */
    z-index: 1000; /* Damit sie immer über den Slots liegen */
}



