
*{
    font-family:Georgia, 'Times New Roman', Times, serif
}

html,body{
    margin: 0;
	padding: 0;
    height: 100%;
	
}


#Div_1{
    height: auto;
    background-color:rgba(141, 110, 110, 0.4);
    border-radius: 10px;
    margin:0 200px;
    padding: 20px 50px 50px 50px;
       
}

#ZoneQuiz{   
    background-image:url("Images/Canada1.jpg");
    background-size:cover ;
    border-top: 1px rgb(155, 7, 2) solid;
    height: 100%;
    width: 100%;
    margin: 0px;
}

#Txt_Quest{   
    font-size: 30px;
    margin: 20px 30px 30px 30px ;
}

.Reponse {
    
    display: flex;
    align-items : center;
    border: solid 2px rgba(138, 137, 137, 0.514);
    border-radius: 20px 0px;
    background-color:rgba(2, 112, 155, 0.4);
    height: 60px;
    margin:20px 50px;
    padding: 0px 20px ;
    font-size: 25px;
    font-weight: 500;
    transition: .4s;
    
}  

ol :hover{
    /*
    background-color:rgba(1, 22, 53, 0.5);   
    margin: 20px 15px;
    */
    background-color:rgba(2, 64, 105, 0.5);      
    transform: scale(1.15);
}

/****************  PARTIE CONCERNANT LE POPUP MESSAGE ****************/

.popup{

    width: 400px;
    background: #fff;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%) scale(0.1);
    text-align: center;
    padding: 0 30px 30px;
    color: #333;
    visibility: hidden;
    transition: transform 0.4s, top 0.4s;
}

.Open-popup{
    visibility:visible;
    top: 50%;
    transform: translate(-50%,-50%) scale(1);
} 

.popup img{
    width: 100px;
    margin-top: -50px;
    border-radius: 50%;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
}

.popup h2{
    font-size: 40px;
    font-weight: 500;
    margin: 20px 0 10px;

}
.popup p{
    font-size: 26px;
    font-weight: 500;
    margin: 20px 0 10px;

}
.popup button{
    width: 100%;
    margin-top: 30px;
    padding: 10px 0;
    background: #1d6403;
    color: #fff;
    border: 0;
    outline: none;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.4);

}
