body {
    background: radial-gradient(circle, #1a1a2e, #000000);
    font-family: Arial, sans-serif;
    color: white;
    text-align: center;
}

h1 {
    color: #ff0000;
    text-shadow: 2px 2px 10px #0000ff;
    font-size: 40px;
}


#quiz {
    background: rgba(255, 0, 0, 0.15);
    border: 3px solid #ff0000;
    border-radius: 15px;
    padding: 20px;
    width: 60%;
    margin: auto;
    box-shadow: 0 0 15px #0000ff;
}

p {
    font-weight: bold;
    color: #ffffff;
}

input[type="radio"] {
    margin: 5px;
}


button {
    background-color: #0000ff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 0 10px #ff0000;
    transition: 0.3s;
}

button:hover {
    background-color: #ff0000;
    box-shadow: 0 0 20px #0000ff;
}

img {
    width: 200px;
    height: 200px;
}


#quizResult {
    margin-top: 20px;
    background: rgba(0, 0, 255, 0.15);
    border: 3px solid #0000ff;
    border-radius: 15px;
    padding: 15px;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 15px #ff0000;
}



section {
    width: 70%;
    margin: auto;
    margin-top: 30px;
    padding: 20px;
}


h2 {
    color: skyblue;
    text-shadow: 0 0 10px #ff0000;
    font-size: 28px;
}


h4 {
    color: #ccccff;
    font-weight: normal;
}


section p {
    line-height: 1.6;
    font-weight: normal;
    margin-bottom: 15px;
}


.question {
    background: rgba(255,255,255,0.05);
    border-left: 4px solid #ff0000;
    padding: 12px;
    border-radius: 8px;
    text-align: left;
}


.question p {
    color: #00aaff;
    font-weight: bold;
}


.question input {
    margin-right: 6px;
}


header {
    margin-bottom: 30px;
}


#funFact {
    color: #00ffff;
    margin-top: 15px;
    font-style: italic;
}