body {
    font-family: Arial, sans-serif;
    background-color: #f3e8ff; /* light purple pozadina */
    color: #2d1b3f;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.quiz-container {
    background-color: #ffffff;
    padding: 30px;
    width: 420px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(128, 90, 213, 0.25);
}

h1 {
    color: #7c3aed; /* ljubičasta */
}

#answers {
    margin-top: 20px;
    text-align: left;
}

.answer {
    margin-bottom: 10px;
}

button {
    background-color: #7c3aed;
    color: white;
    border: none;
    padding: 10px;
    margin-top: 15px;
    width: 100%;
    cursor: pointer;
    border-radius: 8px;
    font-size: 14px;
}

button:hover {
    background-color: #6d28d9;
}

#feedback {
    margin-top: 10px;
    font-weight: bold;
}

.hidden {
    display: none;
}
