body {
    font-family: 'Comic Sans MS', 'Arial', sans-serif;
    background-color: #e0f7fa;
    color: #333;
    margin: 0;
    padding: 20px;
    text-align: center;
}

header {
    background-color: #00796b;
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em;
    text-shadow: 2px 2px #004d40;
}

.question-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.card {
    background-color: white;
    border: 3px solid #004d40;
    border-radius: 10px;
    padding: 15px;
    width: 250px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

.card img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}

.blank-box {
    display: inline-block;
    width: 80px;
    height: 25px;
    border: 2px dashed #004d40;
    background-color: #b2dfdb;
    border-radius: 5px;
    vertical-align: middle;
    text-align: center;
    line-height: 25px;
    color: #333;
}

.word-bank {
    background-color: #80cbc4;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.draggable-words {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.word-chip {
    background-color: #ffb74d;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: grab;
    border: 2px solid #ff8f00;
    transition: transform 0.2s;
}

.word-chip:hover {
    transform: scale(1.1);
}

.word-chip.correct {
    background-color: #81c784;
    border-color: #43a047;
    cursor: default;
}

.word-chip.wrong {
    background-color: #e57373;
    border-color: #c62828;
    cursor: default;
}

button {
    background-color: #f57c00;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #e65100;
}

#feedback {
    font-size: 1.5em;
    font-weight: bold;
    margin-top: 15px;
}

footer {
    margin-top: 40px;
    font-size: 0.9em;
    color: #555;
}