﻿body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    background-color: #0d0d0d;
    color: #00ff99;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: left; 
    padding: 20px;  
}

h1, h2, h3 {
    color: #00ff99;
    text-shadow: 0 0 8px #00ff99;
    text-align: center; 
}

.question-container {
    margin-bottom: 20px;
    width: 100%;
    max-width: 600px;
    background-color: #121212; 
    padding: 15px; 
    border-radius: 8px;
    border: 1px solid #00ff99;
}

.answer-options {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 10px;
}

input[type=text], select, input[type=submit] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 2px solid #00ff99;
    border-radius: 4px;
    background: transparent;
    color: #00ff99;
    box-sizing: border-box;
}

input[type=radio], input[type=checkbox] {
    margin-right: 10px;
    accent-color: #00ff99;
}

label {
    color: #00ffff;
    font-size: 1rem;
    margin-bottom: 5px;
}

input[type=submit] {
    cursor: pointer;
    background-color: #006666;
    transition: background-color 0.3s ease;
}

    input[type=submit]:hover {
        background-color: #00cccc;
    }

input[type=text]:hover, select:hover {
    border-color: #ff00ff;
}

@media (max-width: 600px) {
    body {
        padding: 20px;
    }
}

#result {
    margin: 10px;
}

.image-style {
    max-width: 50px;
    height: auto;
}
