body {
  background: #FF5100;
  background: linear-gradient(90deg,rgba(255, 81, 0, 0.5) 0%, rgba(255, 225, 0, 0.5) 33%, rgba(136, 255, 0, 0.51) 66%, rgba(0, 204, 255, 0.5) 100%);
  font-family: "Jersey 15", sans-serif;
}

#minijeu {
  background-color: #f0f0f0;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  margin-left: 20%;
  margin-right: 20%;
  margin-top: 5%;
  margin-bottom: 1%;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  border-radius: 30px;
}

#titre {
  font-size: 5em;
  font-weight: 500;
  text-shadow: 1px 1px #383838;
  color: #f0f0f0;
  background-color: #575757;
  border-radius: 30px;
  box-shadow: 1px 1px #383838;
  padding: 2%;
  padding-top: 3%;
  text-align: center;
}

#timer {
  font-size: 3em;
  font-weight: 500;
  text-shadow: 1px 1px #383838;
  color: #575757;
  margin: 0.5em;
  text-align: center;
}

#score {
  font-size: 3em;
  font-weight: 500;
  text-shadow: 1px 1px #383838;
  color: #575757;
  margin: 0.5em;
  text-align: center;
}

#question {
  background-color: #575757;
  color: white;
  border: none;
  font-size: 3em;
  font-weight: 500;
  margin: 1em;
  border-radius: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 2em;
  line-height: 1.5em;
  padding: 0.5em;
}

#boutons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4em;
}

#rouge {
  background-color: #FF5100;
  color: #000000;
}
#jaune {
  background-color: #FFE100;
  color: #000000;
}
#vert {
  background-color: #88FF00;
  color: #000000;
}
#bleu {
  background-color: #00CCFF;
  color: #000000;
}

button {
  background-color: #575757;
  color: white;
  border: none;
  font-size: 2em;
  padding: 1em 1em;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.2s;
  width: 10em;
  font-family: "Jersey 15", sans-serif;
}


button[disabled] {
  opacity: 0.5;
  cursor: default;
}

#boutonContinuer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4em;
}

#site {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4em;
  text-decoration: none;
}

#description {
  font-size: 2em;
  font-weight: 700;
  margin: 1em 2em;
  color: #575757;
  text-align: center;
}

#credits {
  font-size: 1em;
  font-weight: 700;
  margin: 1em 1em;
  color: #575757;
  text-align: end;
}

@media all and (max-width: 1600px) {
 
  #minijeu {
  padding: 10px;
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 5%;
  margin-bottom: 5%;
  }
 
  #titre {
    font-size: 2em;
  }
  
  #timer {
    font-size: 1.5em;
  }
  
  #score {
    font-size: 1.5em;
  }
  
  #question {
    font-size: 1.5em;
    line-height: 1.5em;
    min-height: 3em;
  }
  
  #detailQuestion {
    margin: 0.5em 0em;
  }

  #boutons {
    flex-wrap: wrap;
    gap: 1em;
  }
  
  button {
    font-size: 1.5em;
  }

  
  #description {
    font-size: 1.5em;
  }

  #boutonContinuer {
    flex-wrap: wrap;
    gap: 1.5em;
  }
}

#credits {
  text-align: center;
  font-size: 1em;
}