body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    text-align: center;
}

#introPage h1 {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
}

#introPage h1 .logo {
    margin-left: 10px;
    width: 80px;
    height: 80px;
}

#introPage p {
    font-family: 'Arial', sans-serif; /* Change to desired font family */
    font-size: 20px; /* Adjust font size as needed */
    color: black; /* Change font color to blue */
    font-weight: normal; /* Make the font normal weight */
}

#introPage p .bold {
    font-weight: bold; /* Make the span text bold */
    color: blue;
}

#introPage button {
    font-family: 'Arial', sans-serif; /* Change to desired font family */
    font-size: 18px; /* Adjust font size as needed */
    font-weight: bold; /* Adjust font weight as needed */
}

form {
    text-align: left;
}

.question {
    margin-bottom: 20px;
    display: none;
}

.question label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.answer {
    display: block;
    margin-bottom: 10px;
}

.result {
    margin-top: 20px;
    font-size: 1.2em;
    font-weight: bold;
}

.result img {
    max-width: 100%;
    width: 200px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
    margin-top: 20px;
}

button {
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    margin: 5px;
}

button:hover {
    background-color: #0056b3;
}

img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

#progressBarContainer {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 20px;
}

#progressBar {
    height: 20px;
    background-color: #007bff;
    width: 0%;
}

/* Media Query for smaller screens */
@media (max-width: 600px) {
    .container {
        max-width: 90%;
    }

    button {
        width: 100%;
    }
}
