/*Généralités*/
:root {
  box-sizing: border-box;
  /*Couleurs*/
  --norm: #eb7a03; /*rgba(56, 109, 181)*/
  --evid: #2b205c; /*rgba(98, 188, 70)*/
}

/*Photo en-tête*/

/*CORPS*/

body {
  font-family: Arial, Helvetica, sans-serif;
  background-image: linear-gradient(#f3eb81, #f1f0e0);
}

a {
  /*liens*/
  text-decoration: none;
  color: var(--evid);
}

.li-ext::before {
  /*liens à la ligne*/
  content: "🔗";
}

.icone {
  height: 1.8rem; /**taille des images icones**/
}

/**Titre de site et image**/
.titredusite {
  line-height: normal;
  background-color: rgba(56, 109, 181, 0.25);
  font-size: 3rem;
  font-weight: 600;
  color: white;
}
.soustitredusite {
  font-size: 2rem;
}

.esp-sp {
  height: 5vh;
}

.photoentete {
  width: 100%;
  height: 40vh;
  opacity: 0.33;
  
}

.contphotoentete {
  height: 0;
  z-index: 0;
}

/*Menu principal*/

.menuderoulant {
  display: none;
}

.menuprincipal a {
  color: var(--norm);
}

.menuprincipal {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  padding: 3rem 1rem;
  row-gap: 2rem;
  gap: 2rem;
  z-index: 10;
}

.itemmenu1,
.itemmenu2 {
  display: flex;
  flex-direction: column;
  box-shadow: 0.2rem 1rem 0.5rem var(--norm);
  border-top: 4px solid white;
  border-left: 4px solid white;
  border-radius: 1rem;
  background-color: white;
  height: 170px;
  align-items: center;
  padding: 1rem;
  text-align: center;
  color: var(--norm);
  transition: all;
  transition-delay: 0.2s;
}

.itemmenu1 {
  width: 230px;
}

.itemmenu2 {
  width: 150px;
}

.imagemenu {
  height: 75px;
}

.titremenu {
  font-size: 1.3rem;
  font-weight: 700;
}

.titremenu2 {
  font-size: 0.9rem;
  font-weight: 200;
  color: var(--evid);
}

.titremenu2:hover {
  font-weight: 700;
}

.itemmenu1:hover,
.itemmenu2:hover {
  border-top: 4px solid var(--norm);
  border-left: 4px solid var(--norm);
  font-weight: 700;
  background-color: #ebe9c9;
}

/*Coordonnées générales*/
.coordonnees {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  background-color: var(--norm);
  padding: 1rem;
  row-gap: 2rem;
}
.itemcoordonnees {
  width: 200px;
  text-align: center;
  line-height: 0.8rem;
}
.imagecoordonnees {
  height: 50px;
}
.liencoordonnees {
  color: white;
  font-size: 0.75rem;
}

section {
  margin-left: 1rem;
  margin-right: 1rem;
}

p {
  color: var(--norm);
  font-size: 1rem;
  margin-left: 0.4cm;
}

.colornorm {
  color: var(--evid);
}

/*Titres de sections*/
section {
  margin: 0;
  padding: 0;
}
h2 {
  font-size: 1.8rem;
  color: white;
  background-image: linear-gradient(var(--norm), var(--evid));

  padding: 0.2cm 0 0.2cm 0.2cm;
}

/*Contenu des sections*/

.container {
  font-size: 1rem;
  color: var(--norm);
  margin-left: 1rem;
}
.col2 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.itcol2 {
  width: 450px;
}

/*Sous-titres de sections*/
h3 {
  font-size: 1.2rem;
  color: white;
  background-color: var(--norm);
  font-weight: 700;
  padding: 0.2cm;
  margin-left: 0.2cm;
}

h4 {
  font-size: 1rem;
  color: var(--evid);
  border: 1px solid var(--evid);
  font-weight: bold;
  padding: 0.1cm;
  margin-left: 0.2cm;
}

/*Épreuves mises en ligne*/
.contenantepreuves {
  margin-left: 1rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.titreepreuve,
.titreepreuve2 {
  font-size: 1rem;
  color: var(--evid);
  margin-bottom: 0.5rem;
  margin-left: 0.4cm;
}
.titreepreuve {
  width: 250px;
}
.corrige {
  font-size: 0.75rem;
  color: var(--norm);
}

.titreepreuve::before,
.titreepreuve2::before {
  content: "➲";
}

/*Pied de page*/

footer {
  margin-top: 2rem;
  color: var(--norm);
  font-size: 0.8rem;
  text-align: center;
}


.evidence {
  font-weight: bold;
  font-size: 1.1rem;
}