* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Calibri;
}
:root{
    --pColor:#5ED8A3;
}
body{
    background: #5353AA;
}
.container {
    display: grid;
    grid-template-areas:
        'header header'
        'gain question';
    grid-template-rows: 100px auto;
    width: 950px;
    height: auto;
    margin: 0 auto;
 /*   border: 1px solid #000;*/
    background: linear-gradient(180deg, #5353AA, #66B);
}
.good{
    border:3px solid #0F0;
}
.wrong{
    border:3px solid #F00;
}
#gain{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 95%;
    margin-top: 10px;
}
#theme ul{
    width: 50%;

}
#theme ul li{
    background:#666;
    margin: 5px;
    list-style: none;
    padding: 3px;
    transition: .7s;
    cursor: pointer;
}
#theme ul li:hover{
    background:#AAA;
}
#theme ul li span{
    color: #FF0;
    font-weight: bold;
    float: right;
}
#gameOver{
    position: absolute;
    background: #933C;
    font-size: 25pt;
    width:400px;
    height: 175px;
    left: 20%;
    top: 40%;
    transition: 3s;
    color: #FFF;
    padding: 50px;
}
button{
    width: 120px;
    height: 30px;
    border-radius: 50%/10px 5px 20px 5px;
    background:#559;
    transform: .7s;
}
button:not(#check):hover{
    cursor: pointer;
    transform:scale(1.5);
}
#gain li{
    list-style: none;
    color: #AAA;
}
#gain li.current{
    color: #FFF;
    background: #666;
    border-radius: 10px;
    padding: 3px;
}
#question{
    display: flex;
    flex-direction: column;
}
[name=seeTheme] {
    color: var(--pColor);
}
[name=seeTheme]:hover{
    font-weight: bold;
    cursor: pointer;
}
#lib_question{
    background: #559;
    padding: 15px;
    margin: 0.5em;
    border-radius: 100% / 25px 0 25px 0;
    color: #FFF;
    width: 500px;
    box-shadow: 2px 2px 2px #000;
}
#initialValue {
    border-radius: 5px;
    border: 1px solid;
    width: 3rem;
    font-size: 1em;
    text-align: center;
    background: #FFF5;
}
#initialValue::after{
    content:"Point de chaîne";
}
#question ol{
    display: flex;
    flex-wrap: wrap;
    max-width: 340px;
    justify-content: space-around;
}
#choice{
    transform: scale(0);
    transition: .7s;
}
#quit:hover,#double:hover{
    cursor: pointer;
}
#choice.display{
    transform: scale(1);
}
#question ol li{
    list-style-type: upper-alpha;
    width: 45%;
    background: #AAA;
    margin: 5px;
    cursor: pointer;
    height: 2em;
    line-height: 2em;
}
#question ol li:first-child{
    border-radius: 100%/14px 0 0 0;
}
#question ol li:last-child{
    border-radius: 100% / 0 0 15px 0;
}
#question ol li:nth-child(2){
    border-radius: 100% / 0 15px 0 0;
}
#question ol li:nth-child(3){
    border-radius: 100% / 0 0 0 15px;
}
#check{
    width: 431px;
    height: 31px;
    background: #333;
    border-radius: 9px;
    color: #FFF;
    font-size: .9em;
    cursor: pointer;
}
#question ol li:hover{
    background:#FF0
}
#question ol li.check{
    background:#FF0
}
header{grid-area: header;background: #5353AA;box-shadow: 3px 3px 3px #00B;border-radius: 100%/0 0 50% 50%;text-align: center;color: #FFF;}