 body {
        font-family: Arial, sans-serif;
        background: #c2c7c5;
       
    }

    .mcontainer {
         margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        min-height: 100vh;
    }

    .container {
        background: #fff;
        padding: 30px 40px;
        margin: 40px;
        border-radius: 15px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        width: 500px;
    }

    h1 {
        text-align: center;
        color: #333;
    }

    .question-card {
        background: #f9f9f9;
        padding: 20px;
        border-radius: 10px;
        margin-bottom: 20px;
        position: relative;
    }

    .question-card input, .question-card textarea {
        width: 100%;
        margin: 8px 0;
        padding: 10px;
        border-radius: 8px;
        border: 1px solid #ccc;
        font-size: 16px;
    }

    .question-card .remove-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        background: #f44336;
        border: none;
        color: #fff;
        padding: 5px 10px;
        border-radius: 8px;
        cursor: pointer;
    }

    .add-btn, .submit-btn {
        width: 100%;
        padding: 12px;
        margin-top: 15px;
        font-size: 16px;
        border: none;
        border-radius: 25px;
        cursor: pointer;
        color: #fff;
    }

    .add-btn {
        background: #2196F3;
    }

    .add-btn:hover { background: #1976D2; }

    .submit-btn {
        background: #57af4c;
    }

    .submit-btn:hover { background: #388E3C; }

    .result {
        margin-top: 20px;
        font-size: 18px;
        font-weight: bold;
        text-align: center;
        color: #2c2c2c;
    }

        footer{
          text-align: center;
      font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
      background-color: #b86d6d;
      
     }