main {
    text-align: center;
    margin: 50px auto;
    padding: 20px;
    background-color: rgb(241, 241, 241);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.215);
    width: 80%;
    max-width: 600px;
}

/* Heading Styles */
h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

/* Form Container Styles */
.form-container {
    margin-bottom: 20px;
}

/* Button Styles */
button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin: 10px;
}

button:hover {
    background-color: #45a049;
}

/* Output Container Styles */
.output-container {
    font-size: 1.2em;
    margin-top: 20px;
}

#generated-question {
    font-weight: bold;
    font-size: 1.5em;
    color: #4CAF50;
}
