@import url('https://fonts.googleapis.com/css2?family=BBH+Sans+Bartle&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
* {
   margin: 0;
   text-decoration: none;
   padding: 0;
   list-style: none;
   
}

body{
    font-family: "Oswald", sans-serif;
    background: linear-gradient(35deg,#1e2020,#5f6264) no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 100%;
}

header{
   font-family: "BBH Sans Bartle", sans-serif;
  background-color:#FFFF8F;
  position: fixed;
  width: 100%;
  margin-top: 0px;
  height: 40px;
  box-shadow: 7px 5px 5px #262622;
  font-size: larger;
  padding-top: 10px;
}

header img{
  height: 2em;
  margin-top: -5px;
}

div.bandeau{
  display: flex;
  justify-content: space-around;
}

fieldset > p {
    color: white;
    text-align: center;
    margin-top: 200px;
    font-size: 2em;
}
fieldset{
    border: none;
    margin: 30px;
    font-size: 2em;
}
div.centrer-question {
  display: inline-flex; 
  justify-content: flex-start;
  align-items: center; 
  width: 100%;
  margin-top: 15px;
  margin-left: 10px;
  padding-left: 10px;
  border-radius: 2000px;
}

.centre-bouton {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

#Boutonvalidation {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 100px;
  background: linear-gradient(35deg,#232526,#434546);
  border: 2px solid #FFFF8F;
  color: beige;
  font-family: "BBH Sans Bartle", sans-serif;
  cursor: pointer;
  border-radius: 10px;
  margin-top: 10px;
}

#Boutonvalidation:hover {
box-shadow:2px 2px 20px #FFFF8F;
transform: scale(1.2);
}
.centre-resultat {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

#resultat{
    padding: 10px;
    display: inline-flex;
    border-bottom-right-radius: 10px;
     border-top-right-radius: 10px;
     color: beige;
     margin-top: 5px;
}

#logommi{
  position: fixed;
    bottom: 10px;
    right: 10px;
    margin: 5px;
}

#qcmbox{
  display: flex;
  flex-direction: column;
  color: #FFFF8F;
}

.centrer-question:has(input:checked) {
  box-shadow:2px 2px 20px beige; ;
  animation: checkAnim 0.35s ease;

  
}

@keyframes checkAnim {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  };
}

p.intro{
   font-size: 180%;
  color: white;
  padding: 15px;
  
}

