
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: #fff9f4;
    padding: 20px;
}
h1 {
    color: #d37b59;
}
.game-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
}
.functions, .dropzones {
    width: 45%;
}
.draggable {
    background: #ffd3b6;
    margin: 10px;
    padding: 10px;
    cursor: grab;
    border: 2px solid #f7a072;
    border-radius: 5px;
}
.dropzone {
    background: #fcefe6;
    margin: 10px;
    padding: 10px;
    min-height: 150px;
    border: 2px dashed #d37b59;
    border-radius: 5px;
}
.dropzone img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}
.dropzone.correct {
    background: #d4edda;
    border-color: #28a745;
}
.dropzone.incorrect {
    background: #f8d7da;
    border-color: #dc3545;
}
