.letterDP {
    display: inline-block;
    padding: 10px;
    height: 40px;
    width: 40px;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
    cursor: move;
}
.dropzone {
    width: 200px;
    height: 50px;
    border: 2px dashed #ccc;
    margin-bottom: 10px;
}
#toGuess {
    font-size: 25px;
    font-weight: bold;
    text-align: center;
}         
#alphabetsUser li {
    display: flex;
    text-align: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    align-items: center;
    color: #fefefe;
    background: linear-gradient(#262624, #3a393a);
    box-shadow: 2px 0px 0px 0px rgba(0,0,0,0.45);
    border: 1px solid black;
    border-radius: 5px;
}
#alphabetsUser {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    max-width: 900px;
    gap: 20px;
    flex-direction: row;
    margin: auto;
    margin-top: 40px;
}
#containerLetters {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    max-width: 400px;
    flex-direction: row;
    margin: auto;
}
#containerLetters p {
    display: flex;
    text-align: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    align-items: center;
    color: #fefefe;
    background: linear-gradient(#262624, #3a393a);
    box-shadow: 2px 0px 0px 0px rgba(0,0,0,0.45);
    border: 1px solid black;
    border-radius: 5px;
}
.notDefined {
    background: transparent !important;
    box-shadow: 2px 0px 0px 0px rgba(0,0,0,0.45);
    border: 1px solid grey !important;
    border-radius: 5px;
    color: black !important;
}  