@charset "UTF-8";
:root {
  --header-background-color: #1D3557;
  --header-text-color: #F1FAEE;
  --header-accent-color: #FF6B6B;
  --window-border-color: #003366;
  --content-background-color: #F8F9FA;
  --content-heading-color: #1B7F95;
  --content-text-color: #2E2E2E;
}

html {
  height: 100%;
}

body {
  background-color: var(--content-background-color);
  height: 100%;
  margin: 0px;
  font-family: "Roboto";
  text-align: justify;
  text-justify: auto;
  line-height: normal;
}

h1, h2, h3, h4 {
  color: var(--content-heading-color);
  font-family: "Lato";
  font-weight: bold;
}

h1 {
  font-size: 3em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.5em;
}

h4 {
  font-size: 1em;
}

@media (min-width: 576px) {
  .container {
    width: 576px;
  }
}
@media (min-width: 768px) {
  .container {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 900px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 700px;
  }
}
.footnotes {
  border-top: 1px var(--window-border-color) solid;
  padding-top: 1em;
}

header {
  background-color: var(--header-background-color);
  min-height: 5%;
  border-bottom: 3px solid var(--window-border-color);
}

nav {
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: left;
  display: inline-block;
}

.nav-button {
  font-family: "Caveat";
  font-size: x-large;
  padding-right: 10px;
}

.nav-button.current {
  color: var(--header-text-color);
}

a.nav-button {
  text-decoration: none;
  color: var(--header-accent-color);
}

.chevron {
  color: var(--header-text-color);
  font-weight: 700;
  padding-left: 0.5em;
}

.body-content {
  margin: auto;
  min-height: 90%;
  padding: 0.5em;
  color: var(--content-text-color);
}

.body-content a {
  color: var(--content-heading-color);
}

.tipping {
  border-top: 1px var(--window-border-color) solid;
  padding: 1em;
}

footer {
  background-color: var(--header-background-color);
  min-height: 5%;
  font-family: "Caveat";
  position: relative;
  border-top: 3px solid var(--window-border-color);
  color: var(--header-text-color);
}

footer p {
  font-family: "Caveat";
}

footer a {
  color: var(--header-accent-color);
}

.footer-content {
  margin: auto;
  padding: 1em;
  display: flex;
}

figure {
  margin: 1.5em 0;
  padding: 0.5em;
  display: inline-block;
  width: 100%;
  border: 2px solid var(--header-background-color);
  border-radius: 10px 10px 10px 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

figure img {
  max-width: 100%;
  height: auto;
}

figcaption {
  font-size: 1em;
  margin-top: 0.5em;
  padding: 0.5em;
  background-color: var(--header-background-color);
  border-radius: 7px;
  color: var(--content-background-color);
}

figcaption::before {
  content: "Légende : ";
  font-weight: bold;
  color: var(--header-accent-color);
}

.kbd-keyboard {
  background-color: var(--content-background-color); /* same as your website background color */
  border: 1px solid var(--content-heading-color); /* same as your heading color */
  color: black; /* same as your text color */
  padding: 2px 4px;
  border-radius: 3px;
  font-family: "Courier New", Courier, monospace;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  display: inline-block;
  margin: 2px;
  line-height: 1.2;
  font-size: 1em;
}

blockquote {
  font-style: italic; /* italicize the text for a citation */
  color: var(--content-heading-color); /* use the same color as your headings */
  background-color: var(--content-background-color); /* same as your website background color */
  padding: 5px 10px; /* add some padding around the text */
  border-left: 4px solid var(--header-background-color); /* add a left border with your header/footer color */
  margin: 10px 0; /* add vertical margin to separate citations from other text */
  display: block; /* ensure it behaves as a block element */
}

.download-button-container {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically */
  padding-bottom: 1em;
}

.download-button {
  background-color: var(--header-accent-color); /* background color */
  color: var(--content-background-color) !important; /* text color */
  border: none; /* remove default border */
  border-radius: 8px; /* rounded corners */
  padding: 10px 20px; /* adjust padding for a button-like appearance */
  text-align: center; /* center the text */
  display: inline-block; /* ensure it behaves as a block element */
  font-size: 16px; /* adjust as needed */
  cursor: pointer; /* change cursor to pointer on hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* add subtle shadow */
  transition: background-color 0.3s, box-shadow 0.3s; /* smooth transition effects */
}

.post-preamble {
  font-size: medium;
  color: var(--content-text-color);
}

.post-preamble .post-date {
  font-family: monospace;
}

.post-preamble .post-tag {
  background-color: var(--header-background-color);
  color: var(--header-text-color);
  padding: 2px;
  border-radius: 3px;
  font-family: monospace;
}

.post-tag {
  background-color: var(--header-background-color);
  color: var(--header-text-color);
  padding: 2px;
  border-radius: 3px;
  font-family: monospace;
  font-size: medium;
}

.emoji {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.1em;
}

/* Hide the default checkbox */
.custom-checkbox input[type=checkbox] {
  display: none;
}

/* Style the label to look like a checkbox */
.custom-checkbox {
  display: inline-block;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
  margin-bottom: 1em;
}

/* Create a custom checkbox */
.custom-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--content-background-color);
  border: solid;
  border-color: var(--content-text-color);
  border-width: 1px;
  border-radius: 4px;
}

/* When the checkbox is checked, add a background color */
.custom-checkbox input:checked ~ .checkmark {
  background-color: var(--header-accent-color); /* Change this color as needed */
}

/* Create the checkmark/indicator (hidden when not checked) */
.custom-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.custom-checkbox .checkmark:after {
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.cartes-anki-button {
  background-color: #93C5FD; /* background color */
  color: #2C2C2C; /* text color */
  border: none; /* remove default border */
  padding: 2px 4px;
  border-radius: 10px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  display: inline-block;
  margin: 2px;
  line-height: 1.2;
}

.notes-anki-button {
  background-color: #4ADE80; /* background color */
  color: #2C2C2C; /* text color */
  border: none; /* remove default border */
  padding: 2px 4px;
  border-radius: 10px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  display: inline-block;
  margin: 2px;
  line-height: 1.2;
}

.flag-anki-button {
  background-color: #2C2C2C;
  border-radius: 3px;
  padding: 3px;
  margin: 2px;
  line-height: 1.7;
}

.ressource-picked {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
  padding: 0.5em;
  display: table;
  border: 2px solid var(--header-background-color);
  border-radius: 10px 10px 10px 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.ressource-picked img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  max-width: 100%;
  max-height: 300px;
}

.ressource-picked-caption {
  font-size: 1em;
  text-align: left;
  margin-top: 0.5em;
  padding: 0.5em;
  background-color: var(--header-background-color);
  border-radius: 7px;
  color: var(--content-background-color);
}

.ressource-picked-caption::before {
  content: "Mon choix #1 : ";
  font-weight: bold;
  color: var(--header-accent-color);
}

.rounded-anki-adventure img {
  border-radius: 7px;
}

.rounded-grid-anki-adventure img {
  border-radius: 7px;
  margin-top: 0.5em;
}

.grid-2-2-anki-adventure {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
}

.grid-1-2-anki-adventure {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  gap: 10px;
}

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