body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
}

#quiz-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color:#ba00d6;
}

#quiz {
    margin-bottom: 20px;
}

.question {
    margin-bottom: 20px;
}

.options {
    list-style-type: none;
    padding: 0;
}

.options li {
    margin-bottom: 10px;
}

/* My additions */

h2,h3 {display: inline;}

h3 {visibility: hidden;}

.showanswers h3 {
    visibility: visible;
    font-style: oblique;
    color: red;
}

input {margin: 1px 10px 5px 0;}

img {width: 200px; padding: 0;}

input[type="text"] {width: 195px; height: 20px; padding: 0; font-size: 18px;}

/* My additions end here */

#submit {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#results {
    margin-top: 20px;
    font-size: 1.2em;
    text-align: center;
}
