
body{

    font-family: sans-serif;

}

.bg-green{
    background-color:#3d7068;
    color: white;
}

.centerContainer{
    background-color: rgb(199, 199, 199);
    width: 85%;
    height: 400px;
    margin-top: 25px;

}

.downButtonsBox{

    margin: 2%;
    justify-content: center;
    align-items: center;
    align-content: center;
    display: flex;

}

.downButton{
    padding-left:40px;
    padding-right: 40px;
    margin-right:10%;
    margin-left: 10%;
    align-self: center;
}

.signUpContainer{
    background-color: rgb(199, 199, 199);
    width: 400px;
    height: 400px;
    margin-top: 2%;


}

.formButton{
    padding-left:40px;
    padding-right: 40px;

}

.question{
    text-align: left;
    margin: auto;
    padding-top: 15px;
    
}

.qcontent{
    min-height: 250px !important;
    font-size: 1em;
    background-color: #fcd7ad;
    margin:1em;
    padding: 1em;
    margin-left: 5%;
    margin-right: 5%;
    padding-bottom: 2px;
    color: black;

}

#typeAnswer{

    display: flex;
    flex-direction:column-reverse;
    padding: 12px;
    margin-bottom: 15px;
}

.provided_answer{
    background-color: #fff;
    font-size: 13px;
    
    display: flex;
    flex-direction:column-reverse;
    padding: 14px;
    margin-bottom: 15px;

}

.backgroundRed{

    background-color: red;
}


h4{

    text-align: center;
    font-weight: bold;
    font-size: 1.25em;
}
/* timer */

h5{
    text-align: center;
    font-weight: 1em;
    padding:5px;
    font-size: 1em;
}

#lan{

    font-weight: bold;
    text-transform: uppercase;
}


code{
    color:black;
    font-family: Consolas;
    /* padding:30px; */
    font-size: 1em;
    letter-spacing: -0.5px;

}



#q{
    font-weight: bolder;
    font-size: 1em;

}



#answer_title{

    font-size: 1em;
    text-align: center;
    align-self: center;
}








.base-timer {
    position: relative;
    width: 100px;
    height: 100px;
    margin: auto;
  }
  
  .base-timer__svg {
    transform: scaleX(-1);
  }
  
  .base-timer__circle {
    fill: none;
    stroke: none;
  }
  
  .base-timer__path-elapsed {
    stroke-width: 10px;
    stroke: rgb(104, 104, 104);
  }
  
  .base-timer__path-remaining {
    stroke-width: 10px;
    stroke-linecap: round;
    transform: rotate(90deg);
    transform-origin: center;
    transition: 1s linear all;
    fill-rule: nonzero;
    stroke: currentColor;
  }
  
  .base-timer__path-remaining.green {
    color: rgb(65, 184, 131);
  }
  
  .base-timer__path-remaining.orange {
    color: orange;
  }
  
  .base-timer__path-remaining.red {
    color: red;
  }
  
  .base-timer__label {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
  }