body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    height: 100%;
    
}

.question{
    background-color: #1a1a1a;
}

.question-container {
    max-width: 1200px;
    margin: 0 auto; /* Centers the container */
    padding: 20px;
    box-sizing: border-box;
    background-color: #1a1a1a; /* Dark background color */
    color: white;
    
}

.question-container h1{
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    
}

.question-item {
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
}

.question-btn {
    width: 100%;
    background-color: #444;
    color: white;
    padding: 20px;
    text-align: left;
    font-size: 20px;
    border: none;
    cursor: pointer;
    outline: none;
    border-bottom: 1px solid #555;
    align-items: center;
    justify-content: center;
}

.question-btn .plus-icon {
    float: right;
}

.answer {
    display: none;
    padding: 20px;
    background-color: #222;
    border-top: 1px solid #555;
}

.answer p {
    margin: 0;
}

