@keyframes LinkHeaderTurn {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(4deg);
  }
}
@keyframes LinkHeaderUnTurn {
  from {
    transform: rotateZ(4deg);
  }
  to {
    transform: rotateZ(0deg);
  }
}
@keyframes ImgMenuResponsiveTurn {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(90deg);
  }
}
@keyframes ImgMenuResponsiveUnTurn {
  from {
    transform: rotateZ(90deg);
  }
  to {
    transform: rotateZ(0deg);
  }
}
@keyframes ShowBoxResponsive {
  from {
    transform: scaleX(0%);
  }
  to {
    transform: scaleX(100%);
  }
}
@keyframes HideBoxResponsive {
  from {
    transform: scaleX(100%);
  }
  to {
    transform: scaleX(0%);
  }
}
@keyframes ShowInfoMessage {
  from {
    transform: scale(0%);
  }
  to {
    transform: scale(100%);
  }
}
@keyframes HideInfoMessage {
  from {
    transform: scale(100%);
  }
  to {
    transform: scale(0%);
  }
}
@keyframes AppearFromTop {
  from {
    transform: scaleY(0%);
  }
  to {
    transform: scaleY(100%);
  }
}
@keyframes DisappearFromTop {
  from {
    transform: scaleY(100%);
  }
  to {
    transform: scaleY(0%);
  }
}
@keyframes Appear {
  from {
    transform: scale(0%);
  }
  to {
    transform: scale(100%);
  }
}
@keyframes Turn360 {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes AppearToRight {
  from {
    transform: scaleX(0%);
  }
  to {
    transform: scaleX(100%);
  }
}
@font-face {
  font-family: "Mama";
  src: url("/assets/fonts/Mama.ttf") format("truetype");
}
@font-face {
  font-family: "BebasNeue";
  src: url("/assets/fonts/BebasNeue.ttf") format("truetype");
}
@font-face {
  font-family: "BabelSans";
  src: url("/assets/fonts/BabelSans.ttf") format("truetype");
}
@font-face {
  font-family: "Kenyan";
  src: url("/assets/fonts/Kenyan.otf") format("opentype");
}
@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/Roboto.ttf") format("truetype");
}
body {
  padding: 0px;
  margin: 0px;
  position: relative;
}

h1, h2 {
  font-family: "Kenyan";
}

h1 {
  font-size: 2.4em;
}

h2 {
  font-size: 2.2em;
}

p, button, a, li, label, input, textarea {
  font-family: "Roboto";
}

header {
  border-bottom: 3px solid #FFF;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
header > * {
  flex: 1;
  margin: 0px 15px;
}
header > div {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  margin-left: auto;
}
header > div > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 4px 0px;
}
header > div > div > img {
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
header > div > div > a {
  text-decoration: none;
  color: #283593;
}
header > h1 {
  text-align: center;
  font-variant: small-caps;
}

footer {
  border-top: 3px solid #FFF;
  padding: 20px 0px;
}
footer > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 10px auto 20px auto;
}
footer > div > * {
  display: block;
  margin: 0px 15px;
}
footer > div > a {
  text-decoration: none;
  color: #283593;
}
footer > div > a:hover {
  text-decoration: underline;
}
footer > p {
  font-weight: bold;
  text-align: center;
}
footer > ul {
  padding: 0px;
  margin: 0px;
  text-align: center;
}
footer > ul > li {
  list-style: none;
}

div.btnPrimary {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  width: max-content;
  padding: 6px 18px;
  border: 2px solid #283593;
  -webkit-transition-property: background-color;
  -moz-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 300ms;
  -moz-transition-duration: 300ms;
  transition-duration: 300ms;
}
div.btnPrimary > * {
  display: block;
}
div.btnPrimary > img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  filter: invert(18%) sepia(38%) saturate(3961%) hue-rotate(224deg) brightness(90%) contrast(97%);
}
div.btnPrimary > button, div.btnPrimary input {
  border: none;
  background-color: transparent;
  outline: none;
  color: #283593;
}
div.btnPrimary:hover {
  background-color: #283593;
  cursor: pointer;
}
div.btnPrimary:hover > img {
  filter: invert(100%);
}
div.btnPrimary:hover > button, div.btnPrimary:hover input {
  color: #FFF;
}

main {
  -webkit-transition-property: background-color;
  -moz-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 200ms;
  -moz-transition-duration: 200ms;
  transition-duration: 200ms;
  background-color: #283593;
}
main > div#boxJeuTravail {
  width: 100%;
  height: 100%;
  padding: 25px 0px;
  -webkit-transition-property: background-color;
  -moz-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 300ms;
  -moz-transition-duration: 300ms;
  transition-duration: 300ms;
}
main > div#boxJeuTravail > * {
  display: block;
  margin: 30px auto;
}
main > div#boxJeuTravail > button {
  background-color: #FFF;
  border: 3px solid #FFF;
  padding: 6px 18px;
  width: max-content;
  font-size: 1.6em;
  background-color: transparent;
  color: #FFF;
  font-weight: bold;
  -webkit-transition-property: border-radius;
  -moz-transition-property: border-radius;
  transition-property: border-radius;
  -webkit-transition-duration: 300ms;
  -moz-transition-duration: 300ms;
  transition-duration: 300ms;
}
main > div#boxJeuTravail > button:hover {
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
}
main > div#boxJeuTravail > div#boxDice {
  margin: 25px auto;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  border-radius: 24px;
  width: 256px;
  height: 256px;
  border: 3px solid transparent;
  -webkit-transition-property: background-color;
  -moz-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 300ms;
  -moz-transition-duration: 300ms;
  transition-duration: 300ms;
}
main > div#boxJeuTravail > div#boxDice > img:first-of-type {
  width: 192px;
  height: 192px;
  display: block;
  margin: 10px auto;
  filter: invert(100%);
}
main > div#boxJeuTravail > div#boxDice > img:last-of-type {
  display: none;
  position: absolute;
  top: 0%;
  left: 50%;
  width: 64px;
  height: 64px;
  padding: 6px;
  margin-left: -41px;
  margin-top: -41px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  border: 3px solid #FFF;
}
main > div#boxJeuTravail > div#boxDice > p {
  position: absolute;
  margin: 0px 15px;
  color: #FFF;
  text-align: center;
  font-size: 1.5em;
  font-family: "Bodoni";
  font-weight: bold;
}
main > div#boxJeuTravail > p {
  padding: 15px;
  font-size: 1.6em;
  text-align: center;
  width: 60%;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  display: none;
  color: #FFF;
}

@media all and (min-width: 768px) and (max-width: 1199px) {
  main > div#boxJeuTravail > p {
    width: 75%;
  }
}
@media all and (max-width: 767px) {
  header > h1 {
    text-align: left;
    flex: 2;
  }
  header > div:last-of-type {
    display: none;
    flex: 0;
  }
  main > div#boxJeuTravail > p {
    width: 90%;
  }
}

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