body {
            background: #1a202c;
        }

        .questions-container {
            background: #2d3748;
            text-align: center;
            justify-content: center;
            display: flex;
            flex-direction: column;
            margin-top: 30%;
            margin-bottom: 0%;
            margin-left: 10px
            margin-right: 10px;
            border: none;
            border-radius: 10px;
            padding: 10px;
        }

        .question-text {

            color: white;
            font-size: 20px;
            font-weight: 700;
            font-style: normal;
            margin: 2px;
            text-align: center;
            align-items: center;
            justify-content: center;

        }

        .choices-container {
            text-align: center;
            display: flex;
            flex-direction: column;
            color: white;
            font-size: 13px;
            border-radius: 5px;
            margin-Top: 10px;
            margin-bottom: 10px;
            padding: 5px;
            gap: 10px;
        }

        #choiceBtn {
            text-align: center;
            color: white;
            display: flex;
            flex-direction: column;
            font-size: 15px;
            font-weight: 500;
            border: 1px white solid;
            border-radius: 10px;
            padding: 5px;
            background: #1a202c;
            gap: 15px;
            cursor: pointer;
        }
        #choiceBtn:hover {
            color: yellow;
        }
        .next-question-btn {

            font-size: 20px;
            background: #00bfff;
            color: white;
            border: none;
            border-radius: 20px;
            font-family: Sans-Serif;
            font-weight: 700;
            padding: 10px;
            margin-left: 30px;
            margin-right: 30px;
            display: none;

        }
        .quite-quiz-btn{
            font-size: 18px;
            background: #ff0000;
            color: white;
            border: none;
            border-radius: 20px;
            font-family: Sans-Serif;
            font-weight: 500;
            padding: 2px;
            display: block;
            width: 30%;
        }
        
        
        .result {
            text-align: center;
            justify-content: center;
            align-items: center;
        }
        .test-Result {
            position: fixed;
            font-size: 30px;
            color: white;
            background: #1a2012;
            font-family: serif;
            border: 1px white solid;
            border-radius: 10px;
            display: none;
            top: 200px;
            text-align: center;
            width: 95%;
            max-height: 300px;
            overflow-x: scroll;
            overflow-y: scroll;
        }
        .test-Result #explain_Msg{
            font-size: 18px;
            font-family: normal;
            text-align: center;
            border: 1px dotted White;
            border-radius: 10px;
            margin-left: 20px;
            margin-right: 20px;
        }
        .test-Result #close {
            top: 50;
            margin: 10px;
            font-size: 20px;
            border-radius: 10px;
            background: #00bfff;
            color: white;
            font-weight: 700;
            padding: 8px;
            border: none;
            cursor: pointer;
        }
        
        
        .finalResult{
            width: 95%;
            min-height: 300px;
            text-align: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.7);
            border: none;
            border-radius: 10%;
            position: absolute;
            top: 150;
            display: none;
        }
        .finalResult .scores{
            border: 1px white solid;
            border-radius: 10px;
            background: auto;
            margin: 20px;
        }
        .finalResult .score{
            font-size: 20px;
            color: white;
            font-family: serif;
            font-weight: 700;
        }
        .finalResult #tnxMsg{
            font-size: 18px;
            color: white;
            font-family: serif;
            font-weight: 300;
        }
        .finalResult #final-Result-Close{
            margin: 10px;
            font-size: 20px;
            border-radius: 10px;
            background: #00bfff;
            color: white;
            font-weight: 700;
            padding: 8px;
            border: none;
            cursor: pointer;
        }
