@import url('https://fonts.googleapis.com/css2?family=Lato:ital@1&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: "Lato",sans-serif;
    background-image: url("../img/videobg2.gif");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}




/* Question answer column starts from here */

.box{
    background: rgba(255,255,255,0.8);
    border-radius: 10px;
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.2);
    min-height: 350px;
    width: 640px;
    padding: 50px;
}

.paralBox{
    background: linear-gradient(-45deg, #ff8514, #fcc100, #ff7b00, #ff2828);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}



.title{
    border-bottom: 1px solid #464646;
    color: #464646;
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 24px;
}

.header{
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    /* border: 1px solid #444;
    color: #444;
    border-radius: 100px;
    padding: 10px 15px; */


}

.scoreBox, .timerBox{
    border-radius: 100px;
    padding: 10px 15px;
    border: 1px solid #444;
    color: #444;
}

.head_btn button{
    /* background-color: #1da3dd; */
    border-radius: 100px;
    padding: 10px 15px;
    /* color: #fff; */
    border: 1px solid #444;
    font-family: lato;
    font-size: 18px;
    /* opacity: 0.8; */
}




.questionBox{
    background-color: #00a2ff;
    color: #fff;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 20px;
    opacity: 0.5;

}

.paralBox{
    /* background-color: #ffc400; */
    color: #fff;
    /* border-radius: 10px; */
    padding: 10px 15px;
    font-size: 20px;
    opacity: 0.8;

}
#boxPara { 
    border: 10px solid transparent;
    padding: 15px;
    border-image: url(../img/border.png) 30 round;
  }

.optionBox{
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 30px 0;
    grid-gap: 15px;
    opacity: 0.8;
}

.optionBox span{
    /* background-color: #ccc;
    border-radius: 10px;
    color: #444;
    border: 1px solid #444; */
    padding: 10px 15px;


}
#boxOption span{
    border: 15px solid transparent;
    padding: 15px;
    border-image:url(../img/border.png) 40% stretch;
}

.footer{
    display: flex;
    justify-content: space-between;

}

.footer button{
    background-color: #1da3dd;
    border-radius: 5px;
    padding: 7px 15px;
    color: #fff;
    border: 0;
    outline: none;
    font-size: 20px;
    opacity: 0.8;
}
.footer_hint {
    display: flex;
    justify-content: space-between;
  }
  
  .footer_hint button {
  
    border: 0;
    outline: none;
    opacity: 0.8;
  }

/* result section on same page */

.resultBox {
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 15px;
    font-size: 20px;
}

.resultBox *:nth-child(odd) {
    text-align: right;
}

.resultBox span{
    font-weight: 600;
}

.buttonBox{
    border-top: 1px solid #444;
    padding-top: 15px;
    text-align: center;
    
}

.buttonBox a{
    background-color: #1da3dd;
    border-radius: 50px;
    border: 0;
    text-decoration: none;
    color: #fff;
    outline: none;
    padding: 7px 15px;
    margin-top: 30px;
    display: inline-block;

}

.optionBox span.right{
    background-color: #00ab00;
    border-color: #00ab00;
    color: #fff;
}
.optionBox span.wrong{
    background-color: #ff3b0e;
    border-radius: 30px;
    color: #fff;
    background-size:cover;
    /* background-image: url(../img/dhanush.png); */
}

/* Question page ends here */


/* Button for different stages starts here */


/* Button for different stages ends here */


/* media query for responsive webpage starts here */

@media screen and (max-width: 750px){
    .leftSide{
        display: none;
    }
    .container
    .box{
        width: 425px;
    }
    .rightSide{
        width: 100%;
    }

    .optionBox{
        grid-template-columns: 1fr;
    }
    .responsiveBtn{
        width: 80px;
    }

    video{
        width: 300px;
        margin-left: 90px;
    }

    .paralBox{
        width: 300px;

    }


    
}


/* media query page end here */
