.clickable {
		cursor: pointer;
}
.clicked {
		background-color: #e6e6e6;
}
#game {
		margin-top: 20px;
}
#welcomeMessage {
		font-size: 36px;
}
#score {
		font-size: 36px;
}
.dropzone, .letter {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #555;
    background-color: #f0f0f0;
    width: 60px;
    height: 60px;
    font-size: 2rem;
    margin: 5px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.letter.clickable:hover {
    transform: scale(1.08);
}
.highlight {
		background-color: #90ee90;
}
.incorrect {
		background-color: #f08080;
}
@keyframes flashRed {
    0% { background-color: #f08080; }
    50% { background-color: #f0f0f0; }
    100% { background-color: #f08080; }
}

.flash {
    animation: flashRed 0.5s ease;
}