html {
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  font-size: 100%;
  font-family: "Work Sans", sans-serif;
  margin: 0;
}

*, *:before, *:after {
  box-sizing: inherit;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0); /* Rend le blue highligt transparent sur tout le site (ouf!) */
}

body {
  max-width: 800px;
  height: 100vh;
  width: 100%;
  font-size: 1em;
  margin: 0 auto;
  background: linear-gradient(45deg, #d48465, #b078a3);
  color: #f3ebe4;
  text-align: center;
  background-size: 200% 200%;
}
body.indexbg {
  background-size: 300% 300%;
  animation: gradient 15s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
h1, h2, h3 {
  text-align: center;
  font-family: "Montserrat", sans-serif;
}
h1.notop, h2.notop, h3.notop {
  margin-top: 0px;
}

h2 {
  margin-bottom: 1rem;
}

h3 {
  text-align: left;
  font-size: smaller;
  background: linear-gradient(45deg, #d48465, #b078a3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  margin: 7px auto;
  font-size: 0.95em;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-size: 1em;
  color: #050703;
  font-family: "Work Sans", sans-serif;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  background: linear-gradient(45deg, #b7d6d6, #757bae);
  /* transition: all 0.2s ease-in-out; */
  transition: transform 0.1s ease, background-color 0.2s ease;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
button.actionbtn {
  background-color: #b078a3;
}
button.left {
  text-align: left;
}
button .btn-sstitre {
  font-size: 0.9em;
  font-style: italic;
}
button:active {
  transform: scale(0.98);
}
button.menubtn {
  display: flex;
  align-items: center;
}

button:hover {
  background-color: #e0e0e0;
}

button.selected {
  background: #f3ebe4;
  color: #d48465;
}

header {
  width: 100%;
  position: static;
}
header img {
  max-height: 50px;
  margin-top: 5px;
}

footer {
  color: #050703 !important;
  margin-top: 20px;
  position: relative;
  bottom: 0;
  font-weight: bold;
  color: #f3ebe4;
}
footer .reset-button {
  background-color: transparent;
  opacity: 0.5;
  background: transparent;
  font-size: 0.8em;
  color: #050703;
  border: none;
  cursor: pointer;
  box-shadow: none;
  border-radius: 5px;
}

.container {
  width: 100%;
  padding: 10px;
}
.container .section {
  margin-bottom: 20px;
}

.btn-ctn {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.btn-ctn img {
  min-width: 50px;
  width: 100%;
  max-width: 150px;
}
.btn-ctn.row {
  flex-direction: row;
}
.btn-ctn.col {
  flex-direction: column;
}

.info-link {
  font-size: 1em;
  color: #050703;
  font-family: "Work Sans", sans-serif;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  background: linear-gradient(45deg, #b7d6d6, #757bae);
  /* transition: all 0.2s ease-in-out; */
  transition: transform 0.1s ease, background-color 0.2s ease;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  display: flex;
  margin: 0;
  justify-content: center;
}

#team-buttons, .quizz-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row;
  gap: 5px;
}
#team-buttons button, .quizz-buttons button {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lieu-ctn {
  text-align: left;
  color: #050703;
  background: linear-gradient(-45deg, #f3ebe4 0%, #f3f3f1 50%);
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 65px;
}

#lieux-buttons button {
  height: 50px;
}

input[type=text] {
  padding: 8px;
  width: 100%;
  box-sizing: border-box;
}

#lieu-content {
  display: flex;
  flex-direction: column;
}

#navigation {
  position: fixed;
  justify-content: space-around;
  background-color: transparent;
  padding: 10px;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  gap: 5px;
}
#navigation button {
  display: flex;
  justify-content: center;
  border-radius: 50%;
  height: 60px;
  width: 60px;
  margin: 0;
  background: linear-gradient(325deg, #757bae 0%, #b7d6d6 50%);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}/*# sourceMappingURL=style.css.map */