body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f5f5f5;
}

.quiz-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
}

h1 {
    text-align: center;
    color: #333;
}

.question {
    margin-bottom: 20px;
}

.answers {
    display: flex;
    flex-direction: column;
}

.answer {
    padding: 15px;
    margin: 10px 0;
    background: lightgreen;
    border-radius: 5px;
    cursor: grab;
    transition: background 0.3s;
}

.answer:active {
    cursor: grabbing;
    background:skyblue;
}

.dropzone {
    display: inline-block;
    width: 90%;
    height: auto;
    min-height: 40px;
    background: #e0e0e0;
    border: 2px dashed #ccc;
    border-radius: 5px;
    vertical-align: middle;
    padding: 5px;
}

button {
    margin: 10px 5px;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    background-color: green;
    
}

button:hover {
    background: #ddd;
}

#result {
    margin-top: 20px;
    font-size: 18px;
    text-align: center;
}

.correct {
    color: green;
    font-weight: bold;
}

.incorrect {
    color: red;
    font-weight: bold;
}
#redo{
    background-color: lightsalmon;
}
#submit{
    background-color: lightskyblue;
}
