/* ----------------------------- */
/* 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.6rem; /* 1.6rem = 16px dans notre cas */
	line-height: 1.2;
  background-color: lightgrey;
}

header .menu-principal {
  padding: 1em;
  display: flex;
}

header menu a :hover,
footer menu a :hover,
.menu-principal a:hover{
  color: slategrey;
}

.menu-principal > * {
  width: calc(100%/6);
  padding: 0.5em;
}

header .logo {
  text-transform: uppercase;
  font-weight: bold;
}

.langue-fr::after {
  content: "/";
}

header .ouverture {
  display: flex;
  font-size: 5rem;
  justify-content: space-between;
  letter-spacing: 0.04em;
  color: #00cc66 ;
  font-weight: bold;
  margin: 0.2em;
  }

  header .ouverture div{
    border:solid;
    border-radius: 2em;
    padding: 0.2em 0.5em 0.2em 0.5em;
 margin: 0.2em;
      }

.expo{
  color: #9933ff;
  font-size: 5rem;
border:solid;

}

.samedi{
  color: #0066ff;
  font-size: 5rem;
border:solid;

}


.dimanche{
  color: #0066ff;
  font-size: 5rem;
border:solid;

}

main a{
  text-decoration: underline;


}

main a:hover{
  text-decoration: none;
}


main{
    padding: 1em;

}

main p{
 display: block;
 flex-wrap: collum wrap;
 width: 100%;
 border: 1em solid; 
 padding: 0.4em 0.5em;
 margin: 1.7rem auto;

}


 