/* ----------------------------- */
/* RESET
/* ----------------------------- */

@charset "UTF-8";
html {
  /* on s'arrange pour que 1rem soit égal à 10px */
  font-size: 62.5%;
  /* IE9-IE11 */
  font-size: calc(1em * 0.625);
}

/* la suite du reset permet d'enlever les marges par défaut créées par les navigateurs */
/* et de donner un comportement plus intuitif aux principaux éléments */

html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul, menu {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img{
  max-width: 100%;
  height: auto;
}
a{
  color: inherit;
  text-decoration: none;
}
h1, h2, h3, h4, h5{
  font-weight: normal;
}
*[role='button']{
	cursor: pointer;
	user-select: none;
}
/* ----------------------------- */
/* TYPOS
/* ----------------------------- */

@font-face {
    font-family: 'ApfelGrotezk';
    src: url('../fonts/ApfelGrotezk-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ApfelGrotezk';
    src: url('../fonts/ApfelGrotezk-Brukt.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Necto Mono';
    src: url('../fonts/NectoMono-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* ----------------------------- */
/* DESIGN GENERAL
/* ----------------------------- */

body{
	font-family: 'ApfelGrotezk', Arial, sans-serif;
	font-size: 1.85rem; /* 1.6rem = 16px dans notre cas */
	line-height: 1;
  background-color: #f9f8f6;
}


/*HEADER */

header .menu-principal {
  padding: 1em;
  display: flex;
}

.menu-principal > * {
  width: calc(100%/6);
  padding: 0.5em;
}


header .logo {
  text-transform: uppercase;
  font-weight: bold;
}

header menu li a:hover {
  color: #C6C6C6;
}



header menu li a:active, .langue a:focus {
  color: #C6C6C6;
}

.searchbar input {
  border-radius: 1em;
color: white;
border: none;
}

.active::after {
  content:"  /";
}
.active::after:hover {
  color:black;
}

header .langue a.active:focus::after {
  color: black; }

.ouverture {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  font-weight: bold;
}

.ouverture p{
 margin: .125em .5em;
 font-size: 2.9em;
 color: #00CC66;
 line-height: 1.25em;
border: 0.0666em solid;
padding: .0 0.5em;
border-radius: 1.25em;
}

/*-------MAIN------*/
/*-----------------*/

main {
      width: 100%;
    padding: 1.5rem;
    padding-bottom: 5em;
    display: flex;
    flex-flow: column wrap;
    font-weight: bold;
    font-size: 3.1em;
}
.ulmessage {
  display: flex;
  flex-flow: row wrap;
}
.ulmessage li {
    width: 100%;
    padding: 1.6rem 1.5rem;
    display: flex;
    flex-flow: column wrap;
  }

  .ulmessage li > div {
  outline: 0.165em solid;
    padding: 0.2em 0.5em;
  }

  .ulmessage p {
align-content: center;
  }

  .texte1{
    color: #9933FF;
  }
  .texte2, .texte3 {
    color: #0066FF;
  }

main a { text-decoration:underline; 
}

main a:hover {
    text-decoration: none; 
  }

