* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-image: url('https://raw.githubusercontent.com/ItsTerm1n4l/Wallpapers/main/images/jason-unsplash.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #00000094;
    background-blend-mode: darken;
    width: 100dvw;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#quiz-container {
    background: #111111d9;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 20px #000;
    max-width: 500px;
    width: 100%;
}

.question-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.question-block h3 {
    font-size: 1.5rem;
    color: #f8f8f8;
    text-align: center;
}

.question-block label {
    background: #222;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.question-block label:hover {
    background: #333;
    transform: scale(1.02);
}

.answer-input {
    accent-color: #0f0;
    transform: scale(1.3);
}

#result {
    margin-top: 1rem;
    font-size: 1.2rem;
    text-align: center;
    background: #00000080;
    padding: 0.5rem;
    border-radius: 8px;
}

#submit-btn {
    color: black;
}