*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body{
    height: 100%;
}


body{
    font-family: 'Montserrat', serif;
}

main{
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    background-image: ;
    
    background-color : white;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.jeu-quiz-conteneur{
    width: 40rem;
    height: 30rem;
    background-color: rgb(173, 0, 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    border-radius: 30px;
}

.jeu-details-conteneur{
    width: 80%;
    height: 4rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.jeu-details-conteneur h1{
    font-size: 1.2rem;
}

.jeu-question-conteneur{
    width: 80%;
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid black;
    border-radius: 25px;
}

.jeu-question-conteneur h1{
    font-size: 1.1rem;
    text-align: center;
    padding: 3px;
}

.jeu-options-conteneur{
    width: 80%;
    height: 12rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}

.jeu-options-conteneur span{
    width: 45%;
    height: 3rem;
    border: 2px solid black;
    border-radius: 20px;
    overflow: hidden;
}
span label{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s;
    font-weight: 600;
    color: rgb(22, 22, 22);
}

span label:hover{
    -ms-transform: scale(1.12);
    -webkit-transform: scale(1.12);
    transform: scale(1.12);
    color: white;
}

input[type="radio"] {
    position: relative;
    display: none;
}


input[type=radio]:checked ~ .option {
    background: paleturquoise;
}

.prochain-bouton-conteneur{
    width: 50%;
    height: 3rem;
    display: flex;
    justify-content: center;
}
.prochain-bouton-conteneur button{
    width: 8rem;
    height: 2rem;
    border-radius: 10px;
    background: none;
    color: rgb(25, 25, 25);
    font-weight: 600;
    border: 2px solid black;
    cursor: pointer;
    outline: none;
}
.prochain-bouton-conteneur button:hover{
    background-color: rgb(143, 93, 93);
}

.modal-conteneur{
    display: none;
    position: fixed;
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    -webkit-animation: fadeIn 1.2s ease-in-out;
    animation: fadeIn 1.2s ease-in-out;
}

.modal-contenu-conteneur{
    height: 20rem;
    width: 25rem;
    background-color: rgb(43, 42, 42);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    border-radius: 25px;
}

.modal-contenu-conteneur h1{
    font-size: 1.3rem;
    height: 3rem;
    color: rgb(173, 0, 0);;
    text-align: center;
}

.details-note{
    width: 15rem;
    height: 10rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.details-note p{
    color: white;
    text-align: center;
}

.modal-bouton-conteneur{
    height: 2rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-bouton-conteneur button{
    width: 10rem;
    height: 2rem;
    background: none;
    outline: none;
    border: 1px solid rgb(252, 242, 241);
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 20px;
}
.modal-bouton-conteneur button:hover{
    background-color: rgb(83, 82, 82);
}

@media(min-width : 300px) and (max-width : 350px){
    .jeu-quiz-conteneur{
        width: 90%;
        height: 80vh;
     }
     .jeu-details-conteneur h1{
        font-size: 0.8rem;
     }

     .jeu-question-conteneur{
        height: 6rem;
     }
     .jeu-question-conteneur h1{
       font-size: 0.9rem;
    }

    .jeu-options-conteneur span{
        width: 90%;
        height: 2.5rem;
    }
    .jeu-options-conteneur span label{
        font-size: 0.8rem;
    }
    .modal-contenu-conteneur{
        width: 90%;
        height: 25rem;
    }

    .modal-contenu-conteneur h1{
        font-size: 1.2rem;
    }
}

@media(min-width : 350px) and (max-width : 700px){
   .jeu-quiz-conteneur{
       width: 90%;
       height: 80vh;
    }
    .jeu-details-conteneur h1{
        font-size: 1rem;
    }

    .jeu-question-conteneur{
        height: 8rem;
    }

    .jeu-question-conteneur h1{
        font-size: 0.9rem;
     }

    .jeu-options-conteneur span{
        width: 90%;
    }
    .modal-contenu-conteneur{
        width: 90%;
        height: 25rem;
    }
    .modal-contenu-conteneur h1{
        font-size: 1.2rem;
    }
}



@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity:1 ;}
  }

  @-webkit-keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
  }
quizz.css
Page 11 of 37