@import url("https://fonts.googleapis.com/css2family=Open+Sans:wght@300&display=swap");
@font-face {
  font-family: CornerOfTheSky;
  src: url(imgs/KGCorneroftheSky.ttf);
}
@font-face {
  font-family: Chandiluna;
  src: url(imgs/Chandiluna.ttf);
}
body {
  background: url(imgs/sable.jpg) repeat;
  color: #000;
  font-size: 16px;
}

h2, h3 {
  color: #7262aa;
}

h1 {
  font-family: Chandiluna;
  padding: 20px 0 2px 5px;
  color: #1157a2;
}

h2 {
  font-family: CornerOfTheSky;
  font-size: 20px;
  margin-left: 40px;
  padding-top: 10px;
}

p {
  padding-bottom: 15px;
  text-align: justify;
  margin: 0 5px;
}

p::first-letter {
  font-size: 1.5em;
  font-weight: bold;
  color: #1157a2;
}

article a {
  font-weight: bold;
  color: #1157a2;
}

p a:hover {
  text-decoration: underline;
  color: #a22298;
}

article {
  max-width: 1100px;
  margin: 0 auto;
}
article.large {
  max-width: max-content;
}
article ul {
  list-style-image: url("imgs/puce.png");
}

b {
  color: #1157a2;
}

article ul li {
  padding-top: 0.85em;
  padding-bottom: 0.85em;
  margin-left: 4em;
}

.center_block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.video {
  padding: 40px 20px;
}
.video h1 {
  padding: 0;
  margin: 0;
}
.video p {
  font-size: 24px;
  padding: 1em;
  text-align: justify;
}
.video.bleu {
  background-color: #085776;
}
.video.bleu, .video.bleu h1, .video.bleu p, .video.bleu p::first-letter {
  color: #ffd7a4;
}
.video.droite div {
  display: flex;
}
.video.gauche div {
  display: flex;
  flex-direction: row-reverse;
}
.video.droite div, .video.gauche div {
  align-items: center;
}
.video.droite div p, .video.gauche div p {
  flex-shrink: 1;
}
.video.droite div iframe, .video.gauche div iframe {
  flex-shrink: 0;
  padding: 5px;
}

@media screen and (max-width: 840px) {
  .video.droite div, .video.gauche div {
    flex-wrap: wrap;
  }
  .video.droite div iframe, .video.gauche div iframe {
    align-self: center;
    margin: auto;
  }
}
.part {
  display: flex;
  align-items: center;
}
.part img {
  background-color: rgba(251, 220, 102, 0.35);
  margin: 15px;
  border-radius: 8px;
  box-shadow: 3px 3px 5px rgba(130, 52, 29, 0.68);
  padding: 10px 10px;
  max-width: calc(100% - 30px);
}

@media screen and (max-width: 900px) {
  .part {
    flex-wrap: wrap;
  }
  .part > img + p::before {
    content: "";
    display: inline-block;
    margin: 0 12px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 12px solid #1157a2;
  }

  .part > p:nth-child(1)::after {
    content: "";
    display: inline-block;
    margin: 0 8px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 12px solid #1157a2;
  }
}
p.extrait {
  margin-left: 5rem;
}

.demo_effect {
  display: block;
  margin: 15px auto;
}

#sudoku-playground div {
  display: inline-block;
  padding: 3em;
}
#sudoku-playground div .boutons {
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
}
#sudoku-playground div .boutons input {
  border-radius: 25px;
  padding: 5px 10px;
  font-size: 14px;
  color: #fff;
  background-color: #7262aa;
  font-weight: bold;
  border: none;
  box-shadow: 3px 5px 5px #000;
  margin-top: 6px;
}
#sudoku-playground div .boutons input:active {
  box-shadow: -3px -5px 5px #000;
  margin-top: 3px;
}
#sudoku-playground table, #sudoku-playground tr, #sudoku-playground td {
  padding: 0;
  margin: 0;
  border-collapse: collapse;
}
#sudoku-playground tr:first-child, #sudoku-playground tr:nth-child(4), #sudoku-playground tr:nth-child(7) {
  border-top: 3px solid #000;
}
#sudoku-playground tr:last-child {
  border-bottom: 3px solid #000;
}
#sudoku-playground td:first-child, #sudoku-playground td:nth-child(4), #sudoku-playground td:nth-child(7) {
  border-left: 3px solid #000;
}
#sudoku-playground td:last-child {
  border-right: 3px solid #000;
}
#sudoku-playground td {
  width: 2em;
  height: 2em;
  border: 1px solid #000;
  font-weight: bold;
  text-align: center;
  cursor: default;
}
#sudoku-playground td.case {
  color: #7262aa;
  cursor: pointer;
  position: relative;
  top: 0;
  left: 0;
}
#sudoku-playground td.case.correct {
  color: #257D12;
}
#sudoku-playground td.case.faux {
  color: #EA1D1D;
}
#sudoku-playground td.case.faux::after {
  content: "";
  border-bottom: 1px solid #EA1D1D;
  transform: rotate(-45deg) translate(8px, -3px);
  width: 23px;
  display: block;
  position: absolute;
  top: 24px;
  left: 0;
}
#sudoku-playground td.case div.choix {
  display: none;
  z-index: 5;
}
#sudoku-playground td.case div.choix.preactive, #sudoku-playground td.case div.choix.active, #sudoku-playground td.case div.choix.postactive {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#sudoku-playground td.case div.choix.preactive div, #sudoku-playground td.case div.choix.active div, #sudoku-playground td.case div.choix.postactive div {
  background-color: #7262aa;
  color: #fff;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  padding: 3px 0 0 0;
}
#sudoku-playground td.case div.choix.preactive div {
  opacity: 1;
}
#sudoku-playground td.case div.choix.preactive div:nth-child(1) {
  top: calc(50% - 0.75em);
  left: calc(50% - 0.75em);
  transform: rotate(180deg) translateX(1px) rotate(-180deg);
}
#sudoku-playground td.case div.choix.preactive div:nth-child(2) {
  top: calc(50% - 0.75em);
  left: calc(50% - 0.75em);
  transform: rotate(216deg) translateX(1px) rotate(-216deg);
}
#sudoku-playground td.case div.choix.preactive div:nth-child(3) {
  top: calc(50% - 0.75em);
  left: calc(50% - 0.75em);
  transform: rotate(252deg) translateX(1px) rotate(-252deg);
}
#sudoku-playground td.case div.choix.preactive div:nth-child(4) {
  top: calc(50% - 0.75em);
  left: calc(50% - 0.75em);
  transform: rotate(288deg) translateX(1px) rotate(-288deg);
}
#sudoku-playground td.case div.choix.preactive div:nth-child(5) {
  top: calc(50% - 0.75em);
  left: calc(50% - 0.75em);
  transform: rotate(324deg) translateX(1px) rotate(-324deg);
}
#sudoku-playground td.case div.choix.preactive div:nth-child(6) {
  top: calc(50% - 0.75em);
  left: calc(50% - 0.75em);
  transform: rotate(360deg) translateX(1px) rotate(-360deg);
}
#sudoku-playground td.case div.choix.preactive div:nth-child(7) {
  top: calc(50% - 0.75em);
  left: calc(50% - 0.75em);
  transform: rotate(396deg) translateX(1px) rotate(-396deg);
}
#sudoku-playground td.case div.choix.preactive div:nth-child(8) {
  top: calc(50% - 0.75em);
  left: calc(50% - 0.75em);
  transform: rotate(432deg) translateX(1px) rotate(-432deg);
}
#sudoku-playground td.case div.choix.preactive div:nth-child(9) {
  top: calc(50% - 0.75em);
  left: calc(50% - 0.75em);
  transform: rotate(468deg) translateX(1px) rotate(-468deg);
}
#sudoku-playground td.case div.choix.preactive div:nth-child(10) {
  top: calc(50% - 0.75em);
  left: calc(50% - 0.75em);
  transform: rotate(504deg) translateX(1px) rotate(-504deg);
}
#sudoku-playground td.case div.choix.active div {
  opacity: 1;
}
#sudoku-playground td.case div.choix.active div:nth-child(1) {
  top: calc(50% - 0.75em);
  left: calc(50% - 0.75em);
  transform: rotate(90deg) translateX(-35px) rotate(-90deg);
  transition: transform 0.7s ease;
}
#sudoku-playground td.case div.choix.active div:nth-child(2) {
  top: calc(50% - 0.75em);
  left: calc(50% - 0.75em);
  transform: rotate(126deg) translateX(-35px) rotate(-126deg);
  transition: transform 0.7s ease;
}
#sudoku-playground td.case div.choix.active div:nth-child(3) {
  top: calc(50% - 0.75em);
  left: calc(50% - 0.75em);
  transform: rotate(162deg) translateX(-35px) rotate(-162deg);
  transition: transform 0.7s ease;
}
#sudoku-playground td.case div.choix.active div:nth-child(4) {
  top: calc(50% - 0.75em);
  left: calc(50% - 0.75em);
  transform: rotate(198deg) translateX(-35px) rotate(-198deg);
  transition: transform 0.7s ease;
}
#sudoku-playground td.case div.choix.active div:nth-child(5) {
  top: calc(50% - 0.75em);
  left: calc(50% - 0.75em);
  transform: rotate(234deg) translateX(-35px) rotate(-234deg);
  transition: transform 0.7s ease;
}
#sudoku-playground td.case div.choix.active div:nth-child(6) {
  top: calc(50% - 0.75em);
  left: calc(50% - 0.75em);
  transform: rotate(270deg) translateX(-35px) rotate(-270deg);
  transition: transform 0.7s ease;
}
#sudoku-playground td.case div.choix.active div:nth-child(7) {
  top: calc(50% - 0.75em);
  left: calc(50% - 0.75em);
  transform: rotate(306deg) translateX(-35px) rotate(-306deg);
  transition: transform 0.7s ease;
}
#sudoku-playground td.case div.choix.active div:nth-child(8) {
  top: calc(50% - 0.75em);
  left: calc(50% - 0.75em);
  transform: rotate(342deg) translateX(-35px) rotate(-342deg);
  transition: transform 0.7s ease;
}
#sudoku-playground td.case div.choix.active div:nth-child(9) {
  top: calc(50% - 0.75em);
  left: calc(50% - 0.75em);
  transform: rotate(378deg) translateX(-35px) rotate(-378deg);
  transition: transform 0.7s ease;
}
#sudoku-playground td.case div.choix.active div:nth-child(10) {
  top: calc(50% - 0.75em);
  left: calc(50% - 0.75em);
  transform: rotate(414deg) translateX(-35px) rotate(-414deg);
  transition: transform 0.7s ease;
}
#sudoku-playground td.case div.choix.active div:hover {
  color: #f3e689;
}
#sudoku-playground td.case div.choix.postactive div:nth-child(1) {
  top: calc(50% - 0.75em);
  left: calc(50% - 0.75em);
  transform: rotate(90deg) translateX(-1px) rotate(-90deg);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.7s;
}
#sudoku-playground td.case div.choix.postactive div:nth-child(2) {
  top: calc(50% - 0.75em);
  left: calc(50% - 0.75em);
  transform: rotate(126deg) translateX(-1px) rotate(-126deg);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.7s;
}
#sudoku-playground td.case div.choix.postactive div:nth-child(3) {
  top: calc(50% - 0.75em);
  left: calc(50% - 0.75em);
  transform: rotate(162deg) translateX(-1px) rotate(-162deg);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.7s;
}
#sudoku-playground td.case div.choix.postactive div:nth-child(4) {
  top: calc(50% - 0.75em);
  left: calc(50% - 0.75em);
  transform: rotate(198deg) translateX(-1px) rotate(-198deg);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.7s;
}
#sudoku-playground td.case div.choix.postactive div:nth-child(5) {
  top: calc(50% - 0.75em);
  left: calc(50% - 0.75em);
  transform: rotate(234deg) translateX(-1px) rotate(-234deg);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.7s;
}
#sudoku-playground td.case div.choix.postactive div:nth-child(6) {
  top: calc(50% - 0.75em);
  left: calc(50% - 0.75em);
  transform: rotate(270deg) translateX(-1px) rotate(-270deg);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.7s;
}
#sudoku-playground td.case div.choix.postactive div:nth-child(7) {
  top: calc(50% - 0.75em);
  left: calc(50% - 0.75em);
  transform: rotate(306deg) translateX(-1px) rotate(-306deg);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.7s;
}
#sudoku-playground td.case div.choix.postactive div:nth-child(8) {
  top: calc(50% - 0.75em);
  left: calc(50% - 0.75em);
  transform: rotate(342deg) translateX(-1px) rotate(-342deg);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.7s;
}
#sudoku-playground td.case div.choix.postactive div:nth-child(9) {
  top: calc(50% - 0.75em);
  left: calc(50% - 0.75em);
  transform: rotate(378deg) translateX(-1px) rotate(-378deg);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.7s;
}
#sudoku-playground td.case div.choix.postactive div:nth-child(10) {
  top: calc(50% - 0.75em);
  left: calc(50% - 0.75em);
  transform: rotate(414deg) translateX(-1px) rotate(-414deg);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.7s;
}

.passes h1 {
  margin-left: 3em;
}
.passes h3:not(:first-child) {
  padding-top: 1em;
}
.passes p {
  margin-left: 2em;
}

/*# sourceMappingURL=style.css.map */
