.fifth_game {
    margin-top: 20px;
    text-align: center;
}
.fifth_game .boxes {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.fifth_game .box {
    width: 100px;
    height: 100px;
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
}
.fifth_game .box img {
    max-width: 100%;
    max-height: 100%;
}
.fifth_game .pictures {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}
.fifth_game .picture {
    width: 80px;
    height: 80px;
    border: 2px solid #333;
    cursor: grab;
}
.fifth_game .picture img {
    max-width: 100%;
    max-height: 100%;
}
.fifth_game .message {
    display: none;
    margin-top: 20px;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
}
.fifth_game .message.correct {
    background-color: #d4edda;
    color: #155724;
}
.fifth_game .message.incorrect {
    background-color: #f8d7da;
    color: #721c24;
}