 *, ::after, ::before {
    box-sizing: border-box;
    padding : 0px;
    margin : 0px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
}

h1 {
    font-family: 'Russo One', Arial;
    font-weight: lighter;
    text-align: center;
    padding: 30px 0;
    font-size: 40px;
}

.globalcontainer{
    /*background-color: lightblue;*/
    width: 90%; 
    max-width: 800px;
    min-width: 300px;
    margin: 0 auto; /* pour mettre au centre mettre auto */
    height: auto;
}


.box_questions {
    margin: 30px 50px;
    padding: 15px;
    border: 1px solid black;
    border-radius: 4px;
    box-shadow: 5px 5px rgba(0, 0, 0, 0.5);
    
}

.box_questions h4 {
    padding: 0px 0px 10px 0px ;
    font-size: 18px ;
}

.box_questions input[type="radio"] {
    transform: scale(1.3);
}

.reponse {
    font-size: 17px;
    padding: 3px;
    margin: 10px;
}



.resultats {
    margin: 20px 20px 70px;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);

}

.resultats h2 {
    text-align: center;
}

.aide {
    text-align: center;
    font-size: 20px;
    margin-top: 10px;
    font-style: italic;
}

#quote{
    text-align: center;
    font-size: 15px;
}

.note {
    text-align: center;
    font-size: 25px;
    margin-top: 10px;
}

button {
    border: none;
    outline: none;
    display: block; /* comporte toi comme un block*/
    margin: 30px auto; /*centrer*/
    padding: 20px 40px ;
    box-shadow: 1px 1px black;
    border: 1px solid black;
    border-radius: 15px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    transition: background-color 0.2s ease-in-out;
}

.img {
    width : 50%;
    display : block;
    margin : auto;
}

button:hover {
    background: lightblue;
}

.echec {
    animation: echec 0.3s ease-in-out;
}

@keyframes echec {
    0% {
        transform: translateX(0px);
    }
    33% {
        transform: translateX(5px);
    }
    66% {
        transform: translateX(-5px);
    }
    100% {
        transform: translateX(0px);
    }
}
