body {
  background-color: #303536;
  font-family: "Special Elite", system-ui;
}

#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: 700;
  text-shadow: 1px 1px #383838;
  color: #f0f0f0;
  background-color: #0080a0;
  border-radius: 30px;
  box-shadow: 1px 1px #383838;
  padding: 2%;
  padding-top: 3%;
  text-align: center;
  justify-content:center;
}

#timer {
  font-size: 3em;
  font-weight: 700;
  text-shadow: 1px 1px #383838;
  color: #0080a0;
  margin: 0.5em;
  margin-left: 1.5em;
  justify-content: end;
}

#score {
  font-size: 3em;
  font-weight: 700;
  text-shadow: 1px 1px #383838;
  color: #0080a0;
  margin: 0.5em;
  margin-left: 1.5em;
  justify-content: center;
}

#question {
  background-color: #0080a0;
  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: 4em;
  line-height: 2em;
  padding: 0.5em;
}

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

button {
  background-color: #0080a0;
  color: white;
  border: none;
  font-size: 2em;
  font-weight: bold;
  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: "Special Elite", system-ui;
}

button:hover {
  background-color: #f44583;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

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: #0080a0;
  text-align: center;
}

#credits {
  font-size: 1em;
  font-weight: 700;
  margin: 1em 1em;
  color: #0080a0;
  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;
}