*{
  box-sizing: border-box;
  margin: 0;
  color: #d4af37;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body{
  /* background-color: #0c2445; */
  background-color: #052b16;
  position: relative;
}

@font-face {
  font-family: "GreatVibes";
  src:
    local("GreatVibes"),
    url("GreatVibes-Regular.ttf") format("truetype");
}

/* ACCUEIL */
.container-accueil{
  width: 100%;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-direction: column;
}
.titre-accueil{
  font-family: "GreatVibes";
  color: #d4af37;
  font-size: 10rem;
  font-weight: 400;
}
.link-next{ 
  color: #d4af37;
  font-size: 4rem;
  font-family: "GreatVibes";
  margin-top: 2rem;
  display: block;
  position: absolute;
  bottom: 10%;
  text-decoration: underline;
}
.etoile-1,.etoile-2{
  height: auto;
  position: absolute;
  filter: invert(90%) sepia(72%) saturate(6173%) hue-rotate(324deg) brightness(30%) contrast(92%);
  animation-name: etoile-1;
  animation-iteration-count: infinite;
}
.etoile-1{
  width: 12rem;
  top: 20%;
  left: 10%;
  animation-duration: 4s;
}
.etoile-2{
  width: 8rem;
  bottom: 10%;
  right: 20%;
  animation-delay: 1s;
  animation-duration: 3s;
}

@keyframes etoile-1{
  0% {
    filter: invert(90%) sepia(72%) saturate(6173%) hue-rotate(324deg) brightness(30%) contrast(92%);
  }
  50% {
    filter: invert(90%) sepia(72%) saturate(6173%) hue-rotate(324deg) brightness(90%) contrast(92%);
  }
  100% {
    filter: invert(90%) sepia(72%) saturate(6173%) hue-rotate(324deg) brightness(30%) contrast(92%);
  }
}


/* EPREUVE GENERAL */
.container-epreuve, .intro-epreuve{
  width: 100%;
  height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  flex-direction: column;
  transition: .5s;
}
.titre-epreuve{
  font-family: "GreatVibes";
  color: #d4af37;
  font-size: 8rem;
  font-weight: 400;
}
.num-epreuve{
  font-family: "GreatVibes";
  color: #d4af37;
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 2rem;
  margin-top: 15%;
}

.theme-epreuve{
  display: none;
  transition: .5s;
}
.theme-epreuve>div{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 5rem;
}
.theme-epreuve .theme{
  width: 40%;
  padding: 2rem;
  margin: 1rem 3rem;
  border: solid 3px #d4af37;
  border-radius: 3rem;
  color: #d4af37;
  font-size: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container-theme{
  display: none;
  transition: .5s;
  position: absolute;
  width: 100%;
  z-index: 2;
  top: 0;
  background-color: #052b16;
  color: #d4af37;
  text-align: center;
  padding: 5%;
}
.question-theme{
  font-size: 4rem;
}
.reponses-theme{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}
.reponses-theme>p{
  width: 40%;
  padding: 1rem;
  margin: 1rem 3rem;
  border: solid 3px #d4af37;
  border-radius: 3rem;
  color: #d4af37;
  font-size: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.theme-1,.theme-2,.theme-3,.theme-4{
  display: none;
  width: 100%;
  height: 80vh;
  align-items: center;
  justify-content: center;
  transition: .5s;
}