.third_game .sentence {
    margin-bottom: 20px;
}
.third_game .drop-zone {
    display: inline-block;
    width: 100px;
    height: 30px;
    border: 2px dashed #ccc;
    text-align: center;
    vertical-align: middle;
    line-height: 30px;
    margin-left: 5px;
}
.third_game .word {
    display: inline-block;
    padding: 5px 10px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    margin-right: 10px;
    cursor: grab;
}
.third_game .correct {
    color: green;
    font-weight: bold;
}
.third_game .incorrect {
    color: red;
    font-weight: bold;
}

.third_game .third_game {
    max-width: 600px;
    margin: 100px 0 40px;
    place-self: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.third_game #words {
    margin-left: 100px;
}
.third_game #game {
    display: flex;
}
.third_game h1 {
    font-size: 24px;
    text-align: center;
}