*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
body{
    min-height: 100vh;
    display: flex;
    padding: 0 10px;
    align-items: center;
    justify-content: center;
    background-color: orange;
}
.wrapper{
    width: 770px;
    padding: 35px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.5);

}
.wrapper .content-box{
    margin-top: 15px;

    padding: 13px 20px 0;
    border-radius: 10px;
    border: 1px solid #bfbfbf;

}
.content-box .content{
    margin-top: 15px;
    display: flex;
    padding: 12px 0;
    flex-wrap:wrap ;
    align-items: center;
    justify-content: space-between;
    border-top:1px solid #bfbfbf ;

}
.wrapper .input-field{
    padding: 13px 20px 0;
    position: absolute;
    opacity: 0;
    z-index: -99;

}

.content-box .result-details{
     

     display: flex;
     align-items: center;
     justify-content: space-between;
     width: calc(100% - 140px);


}
.result-details li{
    display: flex;
    height: 20px;
    list-style: none;
    align-items: center;
}
.content button{
    width: 105px;
    outline: none;
    border: none;
    color: #fff;
    background-color: orange;
    padding: 8px 0;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.1s ease; 
    
}
.content button:active{
    transform: scale(0.97);
}
.typing-text p span {
      position: relative;
      color: #333;
      transition: color 0.2s ease;
    }

    .typing-text p span.active {
      color: orange;
      font-weight: bold;
    }


.typing-text p span.correct{
    color: rgb(6, 236, 6);
}
.typing-text p span.incorrect {
  color: red;
  background-color: rgba(255, 0, 0, 0.1);
  border-radius: 3px;
}


::selection{
    color: #fff;
    background-color: orange;
}

