
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .contener {
            width: 100vw;
            height: 100vh;
            background-image: url('bg1.jpg');
            background-size: 100% 100%;
            display: flex;
            align-items: center;
            justify-content: center;

        }

        .QuizMainDiv {
            width: 500px;
            height: 100%;
            background-color: tomato;
            background: rgba(255, 255, 255, 0.137);
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(5px);
            border-radius: 2px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            display: flex;
            flex-direction: column;
            align-content: space-around;
            position: relative;
        }

        .OutOfQuestionDiv {
            width: 90%;
            margin: 20px;
            border-radius: 10px 10px 0px 0px;
            background-color: white;
            padding: 10px;
            display: flex;
            justify-content: space-between;
        }

        .QuestionDiv {
            width: 90%;
            margin: 20px;
            border-radius: 5px;
            background-color: white;
            padding: 10px;
            display: flex;
        }

        .option {
            background-color: rgb(255, 255, 255);
            border-radius: 10px 0px 10px 0px;
            padding: 5px;
            cursor: pointer;
            min-width: 220px;

        }

        .option:hover {
            background-color: rgb(231, 231, 251);
            border-radius: 10px 0px 10px 0px;
            padding: 5px;
            cursor: pointer;

        }

        .optset {
            display: flex;
            width: 90%;
            margin: 20px;
            justify-content: space-between;
        }

        .questionNumSpan {
            font-weight: 600;
            font-size: 18px;
        }

        #optA,
        #optC {
            margin-right: 10px;

        }

        .imgDiv {
            margin-left: 40px;
            width: 150px;
            height: 150px;
            background-color: aliceblue;
            border-radius: 4px;
            display: none;
        }

        #nextBtn {
            width: 70px;
            padding: 5px 20px;
            background-color: darkblue;
            color: white;
            cursor: pointer;
            border-radius: 2px;
            align-self: flex-end;
            margin-right: 40px;
            margin-top: 20px;
        }

        #nextBtn:hover {

            background-color: tomato;

        }

        #congDiv {
            background: #e3edf7;
            margin: 10px 10px;
            height: 100%;
            border-radius: 10px;
            overflow-y: scroll;
        }

        #congP {
            font-size: xx-large;
            color: rgb(53, 197, 137);

            padding: 10px;
            text-align: center;

        }

        .circlePorgressDiv {
            margin-top: 20px;
            width: 100px;
            height: 100px;

            position: relative;
        }

        .outer {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15),
                -6px -6px 10px -1px rgba(255, 255, 255, 0.7);
        }

        .inner {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            box-shadow: inset 4px 4px 6px -1px rgba(0, 0, 0, 0.2),
                inset -4px -4px 6px -1px rgba(255, 255, 255, 0.7),
                -0.5px -0.5px 0px rgba(255, 255, 255, 1),
                -0.5px -0.5px 0px rgba(0, 0, 0, 0.15),
                0px 12px 10px -10px rgba(0, 0, 0, 0.05);
        }

        #circle1 {
            fill: none;
            stroke-width: 10px;
            stroke: url(#GradientColor);
            stroke-dasharray: 280;
            stroke-dashoffset: 280;
        }

        #circle2 {
            fill: none;
            stroke-width: 10px;
            stroke: green;
            stroke-dasharray: 280;
            stroke-dashoffset: 280;
            /* animation: anim2 2s linear forwards; */
        }

        #circle3 {
            fill: none;
            stroke-width: 10px;
            stroke: red;
            stroke-dasharray: 280;
            stroke-dashoffset: 280;
            /* animation: anim3 2s linear forwards; */
        }

        svg {
            position: absolute;
            top: 0;
            left: 0;
        }

        .innerP {
            font-size: 10px;
        }

        @keyframes anim10 {
            100% {
                stroke-dashoffset: 252;
            }
        }

        @keyframes anim20 {
            100% {
                stroke-dashoffset: 224;
            }
        }

        @keyframes anim30 {
            100% {
                stroke-dashoffset: 1 96;
            }
        }

        @keyframes anim40 {
            100% {
                stroke-dashoffset: 168;
            }
        }

        @keyframes anim50 {
            100% {
                stroke-dashoffset: 140;
            }
        }

        @keyframes anim60 {
            100% {
                stroke-dashoffset: 112;
            }
        }

        @keyframes anim70 {
            100% {
                stroke-dashoffset: 84;
            }
        }

        @keyframes anim80 {
            100% {
                stroke-dashoffset: 56;
            }
        }

        @keyframes anim90 {
            100% {
                stroke-dashoffset: 28;
            }
        }

        @keyframes anim100 {
            100% {
                stroke-dashoffset: 0;
            }
        }

        @keyframes anim2 {
            100% {
                stroke-dashoffset: 0;
            }
        }

        @keyframes anim3 {
            100% {
                stroke-dashoffset: 280;
            }
        }

        .cardP {
            margin-top: 30px;
            padding: 10px 20px;
            border-radius: 15px 0px 15px 0px;
            box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15),
                -6px -6px 10px -1px rgba(255, 255, 255, 0.7);
        }

        .btnP {
            padding: 10px 20px;
            
            border-radius: 2px;
            border: 1px solid black;
            cursor: pointer;
            font-size:20px;
            margin: 8px;
            font-weight:600;
            
            background-color: none;
            margin-top: 40px;
            box-shadow: 4px 4px 10px -1px rgba(0, 0, 0, 0.15),
                -4px -4px 10px -1px rgba(255, 255, 255, 0.7);

        }

        #btnP1 {
            color: hotpink;
            
            border: none;

        }

        #btnP2 {
            color:rgb(182, 48, 248);
          
            border:none;

        }

        #btnP3 {
            color: green;
            
            border: none;

        }

        #btnP4 {
            color: mediumslateblue;
            
            border: none;

        }

        #btnP1:hover {
            color: rgb(255, 255, 255);
            background-color: hotpink;
        }

        #btnP2:hover {
            color: rgb(255, 255, 255);
            background-color: rgb(182, 48, 248);
        }

        #btnP3:hover {
            color: rgb(255, 255, 255);
            background-color: green;
        }

        #btnP4:hover {
            color: rgb(255, 255, 255);
            background-color: mediumslateblue;
        }

        #RuseltReviewDiv {
            display: none;
        }

        @media only screen and (max-width: 500px) {
            #main {
                width: 100vw;
                height: 100vh;
            }

            .QuizMainDiv {
                width: 100vw;
                height: 100vh;
            }

            .optset {
                display: flex;
                width: 94%;
                margin: 0px 10px;
                justify-content: space-between;
                flex-direction: column;
            }

            .option {
                margin-top: 25px;
            }

            #optA,
            #optC {
                margin-right: 0px;

            }

            .OutOfQuestionDiv,
            .QuestionDiv {
                margin-left: 5px;
                width: 95%;
            }


        }

        /* quiz start  pup Up Div */
        #pupUpMainDiv {
            width: 100%;
            height: 100%;
            background-color: #e3edf7;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 2;
            display: flex;
            justify-content: center;
        }


        #pupUpInnerDiv {
            width: 60%;
            height: 400px;
            background-color: white;
            border-radius: 10px;
            margin-top: 60px;
        }

        #quizSubjectDiv,
        #startBtnDiv {
            display: flex;
            align-items: center;
            justify-content: center;

            margin-top: -30px;

        }

        #quizSubject {
            color: white;
            padding: 6px 30px;
            font-weight: 600;
            background-color: darkblue;
            border-radius: 10px 0px 10px;
            width: 180px;
            text-align: center;
            font-family: 'Times New Roman', Times, serif;
            box-shadow: 6px 6px 20px -1px rgba(0, 0, 0, 0.25),
                -6px -6px 20px -1px rgba(255, 255, 255, 0.9);
        }

        #crossBtnDiv {
            display: flex;
            justify-content: end;
        }

        #crossBtna {
            padding: 6px;
            border-radius: 20px;
            background-color: red;
            color: white;
            width: 30px;
            height: 30px;
            text-align: center;
            cursor: pointer;
            margin-top: -8px;
            margin-right: -8px;
            text-decoration: none;
        }

        #quizTitel {
            margin: 20px;
            font-size: 18px;
            font-weight: 600;
        }

        #StartBtn {
            padding: 6px 30px;
            background-color: green;
            color: white;
            border-radius: 16px;
            font-family: 'Times New Roman', Times, serif;
            font-weight: 600;
            cursor: pointer;
        }

        @media only screen and (max-width: 450px) {
            .cardP {
                font-size: 11px;
                padding: 8px 10px;
            }

            .btnP {
                font-size: 12px;

            }
        }
        
        #closeDiv{
            display: flex;
            justify-content: end;
            margin-top: -45px;
            margin-right: 20px;
        }
        #closeP{
            
            background-color:red;
            color:white;
             display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 2px;
            padding:4px 15px;
            cursor: pointer;
        }
        
        .adsDiv{
            width:100%;
            height:150px;
           background-color:yellow;
           margin-top: 10px;
           border-radius:10px;
        }
          #pupUpInnerDiv {
            width: 80%;
            height: 400px;
            background-color: white;
            border-radius: 10px;
            margin-top: 60px;
        }
