@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
body {
  background: #121421;
  font-family: "Nunito";
  margin: 0;
  padding: 15px 15px;
  animation: fadeIn 200ms ease-out;
  transition: opacity 150ms ease-in-out;
}

h1,
h2,
label {
  color: white;
  margin: 0;
  font-family: "Nunito";
}

h3 {
  margin: 0;
  color: #A5A8B9;
  font-weight: 700;
}

h1,
h2 {
  text-align: center;
}
h1.title-index,
h2.title-index {
  margin: 0 0 40px 0;
}

.title-h2-1 {
  margin: 30px 0 20px;
  font-size: 8.3vw;
}

* {
  box-sizing: border-box;
}

input {
  background: #3C4473;
  box-shadow: 0 0 10px #7486BA;
  border: 0;
  padding: 10px 12px;
  color: white;
  font-weight: 700;
  font-family: "Nunito";
  text-align: center;
  display: block;
  margin: auto;
  font-size: 20px;
  border-radius: 12px;
}
input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
input.input-config {
  width: 75%;
}

button {
  background: rgb(37, 40, 75);
  border: 0;
  border-radius: 100px;
  color: white;
  padding: 6px 8px;
  font-weight: 700;
  font-family: "Nunito";
  padding: 8px 18px;
  font-size: 15px;
}

#teams-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 25px;
}

.content-config-team {
  margin: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.starter {
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding-top: 70px;
}

.chrono-config {
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
}

.chrono {
  margin: 15px auto;
}

#all-teams {
  width: 247px;
  padding: 10px;
  border-radius: 12px;
  background: #212537;
  box-shadow: inset 0 0 2px #81869F;
}
#all-teams h3 {
  font-size: 21px;
  text-align: center;
}
#all-teams ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-wrap: wrap;
  align-items: center;
}
#all-teams ul li {
  font-size: 4vw;
  color: white;
  text-align: center;
}

#timer {
  width: 124px;
  padding: 10px;
  border-radius: 12px;
  background: #212537;
  box-shadow: inset 0 0 2px #81869F;
}
#timer h3 {
  font-size: 21px;
  text-align: center;
}
#timer #countdown {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  color: white;
}

.content-card {
  width: 100%;
  margin: auto;
  padding: 20px 22px;
  background: #212537;
  border-radius: 12px;
  box-shadow: inset 0 0 2px #81869F;
}

.card {
  width: 100%;
  margin: auto;
  padding: 6px 0px;
  background: #4C5AEE;
  font-size: 6.9vw;
  border-radius: 12px;
  color: white;
  font-weight: 700;
  text-align: center;
  box-shadow: inset 0 0 2px #0C135E;
  /* Ombre interne */
}

.mots-interdits-container ul {
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.mots-interdits-container ul li {
  margin: auto;
  width: 300px;
  padding: 6px 0px;
  background: #EE4C4C;
  border-radius: 12px;
  font-size: 6.9vw;
  border-radius: 12px;
  color: white;
  font-weight: 700;
  text-align: center;
  box-shadow: inset 0 0 4px #440B0B;
}

.actions {
  display: flex;
  align-items: center;
  justify-content: center;
}
.actions button {
  margin: 5px;
  padding: 10px 20px;
  font-size: 7vw;
}

#equipes-info {
  display: grid;
  grid-template-columns: auto 124px;
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 20px;
}
#equipes-info h2 {
  grid-column: 1/3;
  grid-row: 1/2;
  font-size: 8.3vw;
}
#equipes-info #all-teams {
  width: 100%;
  grid-column: 1/2;
  grid-row: 2/3;
}
#equipes-info #timer {
  grid-column: 2/3;
  grid-row: 2/3;
}

#fullscreenBtn {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  padding: 0;
}

#fullscreenBtn:hover {
  background: rgba(0, 0, 0, 0.7);
}/*# sourceMappingURL=style.css.map */