/*-------------------------------*/

/* FAIRE LE LIEN AVEC LES FONTS */

/*-------------------------------*/

@font-face {
  font-family: "Ogg-Italic";
  src: url("./../res/font/Ogg-Italic.otf");
}

@font-face {
  font-family: "Ogg-Roman";
  src: url("./../res/font/Ogg-Roman.otf");
}

/*-------------------------------*/

/* REGLAGES DES TEXTES */

/*-------------------------------*/

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2rem;
  text-align: center;
  padding: 2rem;
  margin: 0;
}

/*-------------------------------*/

/* REGLAGES DES PAGES */

/*-------------------------------*/

body {
  background-color: #666666;
  margin: 0;
  position: relative;
  color: #da4c95;
  font-family: "Ogg-Roman";
  font-size: 2rem;
}

.accueil a {
  text-decoration: none;
  color: #da4c95;
}

.accueil .content h1 {
  border: none;
  text-align: center;
  font-size: 4rem;
}

a.entrer {
  display: block;
  font-size: 6rem;
  font-family: "Ogg-Italic";
  opacity: 0.5;
  transition: opacity 0.2s ease-in-out;
}

a.entrer:hover {
  opacity: 1;
}

nav {
  position: absolute;
  top: 2rem;
  left: 2rem;
}

nav ul {
  margin: 0;
  padding: 0;
}

nav ul li {
  list-style: none;
}

nav ul li a span {
  display: block;
  width: 2rem;
  height: 0.3rem;
  background-color: #da4c95;
  margin-bottom: 0.3rem;
}

.page {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-top: 4rem;
}

.content {
  width: 90vw;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}

.content h1 {
  width: 100%;
  text-align: left;
  border-top: 1px solid #da4c95;
  border-bottom: 1px solid #da4c95;
  padding: 0.5rem 0;
}

.content a.quizz-link {
  width: 100%;
  text-decoration: none;
  color: #da4c95;
  text-align: right;
  border-top: 1px solid #da4c95;
  border-bottom: 1px solid #da4c95;
  margin-top: 2rem;
  padding: 0.5rem 0;
  opacity: 0.6;
  transition: all 0.3s ease-in-out;
}

.content a.quizz-link:hover {
  opacity: 1;
}

.content .quizz-skip {
  width: 100%;
  border-top: 1px solid #da4c95;
  border-bottom: 1px solid #da4c95;
  margin-top: 2rem;
  padding: 0.5rem 0;
}

.content .quizz-skip span {
  float: left;
}

.content .quizz-skip a {
  float: right;
  color: #da4c95;
  text-align: right;
  margin: 0;
  text-decoration: none;
  opacity: 0.6;
  transition: all 0.3s ease-in-out;
}

.content .quizz-skip a:hover {
  opacity: 1;
}

.content-quizz {
  width: 100%;
  height: 100%;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: row wrap;
}

.content-quizz a, .content-quizz p {
  font-family: "Ogg-Italic";
  font-size: 3.5rem;
  color: #da4c95;
  text-decoration: none;
  flex-basis: 49%;
  text-align: center;
  display: block;
  padding: 3rem 0;
  transition: all 0.3s ease-in-out;
  margin: 0;
}

.content-quizz p:nth-of-type(1) {
  border-right: 1px solid #da4c95;
}

.content-quizz a:hover {
  background-color: #da4c95;
  color: #666666;
}

a.quizz-end {
  color: #da4c95;
  text-decoration: none;
  font-size: 6rem;
  opacity: 0.6;
  transition: all 0.3s ease-in-out;
}

a.quizz-end:hover {
  opacity: 1;
}

/*-------------------------------*/

/* REGLAGES PAGE TOUTES VIDEOS*/

/*-------------------------------*/

.content-box {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}

.box {
  max-width: 25%;
  height: 33.3vh;
  flex: 0 0 25%;
  text-decoration: none;
  color: #da4c95;
  overflow: hidden;
  position: relative;
}

.box .cache {
  position: relative;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.2s ease-in-out;
}

.box:hover .cache {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
}

.box video {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  height: 100%;
  border-radius: 0;
}

.box:hover video {
  opacity: 1;
}

.box:nth-of-type(1), .box:nth-of-type(3), .box:nth-of-type(6), .box:nth-of-type(8), .box:nth-of-type(9), .box:nth-of-type(11) {
  background-color: #da4c95;
  color: #666666;
  font-family: "Ogg-Italic";
}

video {
  border-radius: 1rem;
}

@media screen and (max-width: 800px) {
  /* reglages responsiv*/
  h1, .accueil .content h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
    padding: 1rem;
    margin: 0;
  }
  a.entrer {
    font-size: 3rem;
  }
  .content-quizz a, .content-quizz p {
    font-size: 2rem;
  }
  .box {
    max-width: 50%;
    height: 25vh;
    flex: 0 0 50%;
  }
  .box:nth-of-type(3), .box:nth-of-type(6), .box:nth-of-type(11) {
    background-color: transparent;
    color: #da4c95;
    font-family: "Ogg-Italic";
  }
  .box:nth-of-type(1), .box:nth-of-type(4), .box:nth-of-type(5), .box:nth-of-type(8), .box:nth-of-type(9), .box:nth-of-type(12) {
    background-color: #da4c95;
    color: #666666;
    font-family: "Ogg-Italic";
  }
  video.page-video {
    width: 100%;
  }
}