@import url('https://fonts.googleapis.com/css?family=Orbitron:500,900&display=swap');

*{
  font-family: 'Orbitron', sans-serif;
  color:rgb(255, 237, 0);
  letter-spacing: 1px;
}

body{
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

main {
  display: flex;
  flex-direction: column;
}






/***********************************************
PINDORCHOS FIJOS
************************************************/

.pindorcho {
  width: 10vw;
  height: 100vh;
  background-color: white;
  position: fixed;
  display: grid;
  align-items: center;
  justify-content: center;
  top: 0;
  white-space: nowrap;
  z-index: 2;
}

.pindorchoContent1 {
  transform: rotate(-90deg)
}

.pindorchoContent2 {
  transform: rotate(90deg)
}

.pindorcho.left {
  left: 0;
}

.pindorcho.right {
  right: 0;
}

.pindorcho .titulo {
  color: black;
  font-size: 60px;
  font-weight: 900;
  margin: 0;
  text-align: center;
}

.pindorcho .subtitulo{
  text-align: center;
  font-size: 14px;
  transition: .5s;
  margin: 0;
}

.pindorcho .subtitulo:hover{
  background-color: blue;
  color: rgb(255, 0, 115);
  transition: .5s;
}









/***********************************************
grilla interactiva y título del proyecto
************************************************/

.top {
  width: 80vw;
  height: 100vh;
  margin: auto;
  display: grid;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

canvas {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  z-index: 2;
}

.chumpler {
  font-weight: 900;
  font-size: 125px;;
  text-align: center;
  transition-property: background-color, color;
}

.chumpler h4{
  height: 300px;
  overflow: hidden;
  text-align: center;
}

.chumpler .tit1{
  color: white;
  font-style: italic;
}

.chumpler .tit2{
  color: rgb(255, 0, 115);
}

.chumpler .tit3{
  color: blue;
  font-weight: 900;
}

.chumpler span {
  display: flex;
  width: 100%;
  height: 100%;
  display: grid;
  align-items: center;
  animation: shuffle steps(10) 3s infinite;
}

@keyframes shuffle {
  0% {
    transform: translateY(0px);
  }
  100%{
    transform: translateY(-3000px);
  }
}









/***********************************************
INTRODUCCION
************************************************/


.intro {
  width: 100vw;
  height: 100vh;
  z-index: 8;
  background-color: black;
  position: relative;
}

.explicacion {
  padding: 0px 50px;
  position: relative;
}

.explicacion h1 {
  font-size: 75px;
  z-index: 9;
  margin-bottom: 20px;
}

.explicacion h2{
  font-style: italic;
}

.explicacion p{
  font-size: 20px;
  color: rgb(255, 0, 115);
}







/***********************************************
BANNER
************************************************/


.frasefuturo {
  background-color: blue;
  z-index: 2;
}

.frasefuturo h6{
  color: rgb(255, 0, 115);
  font-size: 70px !important;
  font-weight: 900;
  margin: 0;
  position: relative;
  display: block;
  overflow: hidden;
}

.frasefuturo h6 span {
  position: relative;
  display: inline-block;
  padding: 15px 0px;
  animation: animate 8s linear infinite;
}

.frasefuturo h6 span:before {
  content: attr(data-text);
  position: absolute;
  top:0;
  padding: 15px 0px;
}

@keyframes animate
{
  0%
  {
    transform: translateX(150%);
  }
  100%
  {
    transform: translateX(-100%);
  }
}







/***********************************************
columnas
************************************************/

.columns {
  display: flex;
  columns:2;
  padding-top: 0px;
  margin: 0px auto;
}

section {
  margin: 0;
}

.elementos {
  width: 38vw;
  height: 100vh;
  border: solid 1px transparent;
  padding: 0px 10px;
  background-color: black;
}

.grac {
  background-color: black;
  margin-bottom: 0;
  padding-bottom: 300px;
}





/***********************************************
PASADO
************************************************/

.content{
  padding-right: 50px;
}

.mots-passe {
  margin: 0;
  padding: 0;
}

.mots-passe h1{
  font-size: 75px;
  margin-top: 30px;
}

.passe .content {
  position: relative;
}

.definition h2{
  font-style: italic;
}

.definition p{
  font-size: 20px;
  color: rgb(255, 0, 115);
}

.passe .definition {
  opacity: 0;
}

.passe .active .definition {
  animation-name: slidein;
  animation-duration: 0.5s;
  animation-delay: .5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes slidein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}





/***********************************************
input
************************************************/

.troisiemmeEcran input {
  background-color:rgb(255, 245, 0);
  color: black;
  border: 0;
  padding: 15px;
  font-size: 30px;
  margin-top: 50px;
  transition: .5s;
}

.troisiemmeEcran input:hover {
  box-shadow: 0 0 10px blue,
              0 0 25px rgb(255, 0, 115, 1),
              0 0 50px rgb(255, 0, 115, 1),
              0 0 0 80px rgb(255, 0, 115, 0.05),
              0 0 0 60px rgb(255, 0, 115, 0.05),
              0 0 0 40px rgb(255, 0, 115, 0.05),
              0 0 0 20px rgb(255, 0, 115, 0.05);
  transition: .5s;
}






/***********************************************
propuestas
************************************************/


.propositions {
}

.futurListItem {
  margin-left: 50px;
  margin-top: 10px;
  font-weight: 600;
}

.futurListItem:nth-child(1n){
  font-size: 20px;
}

.futurListItem:nth-child(even){
  font-size: 80px;
}

.futurListItem:nth-child(2n){
  list-style: square inside;
  margin-left: 50px;
  font-size: 40px;
}

.futurListItem:nth-child(3n){
  margin-left: 330px;
  transform: rotateZ(90deg);
}

.futurListItem:nth-child(4n){
  font-size: 60px;
  list-style: none;
}

.futurListItem:nth-child(5n){
  font-size: 10px;
}

.futurListItem:nth-child(6n){
}

.futurListItem:nth-child(7n){
  margin-left: 200px;
  margin-top: -150px;
  transform: rotateZ(-90deg);
}

.futurListItem:nth-child(8n){
  font-size: 40px;
  transform: none;
  margin-top: 70px;
}

.futurListItem:nth-child(9n){
  font-size: 170px;
  list-style: none;
  margin-left: 40px;
  transform: none;
}

.futurListItem:nth-child(10n){
  font-size: 20px;
  transform: none;
}

.futurListItem:nth-child(11n){
  font-size: 20px;
  transform: none;
  margin-top: -180px;
}

.futurListItem {
  color: white;
}






/***********************************************
Animaciones para futuro
************************************************/

.bgprinta {
  background-image: url("../media/humanel1.gif");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom;
  transition: 1s;
}

.bgprinta:hover {
  background-image: url("../media/humanel2.gif");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom;
  transition: 1s;

}

.bgprintb {
  background-image: url("../media/aigue1.gif");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom;
  transition: 1s;
}

.bgprintb:hover {
  background-image: url("../media/aigue2.gif");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom;
  transition: 1s;
}


.bgprintc {
  background-image: url("../media/tantot1.gif");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom;
  transition: 1s;
}

.bgprintc:hover {
  background-image: url("../media/tantot2.gif");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom;
  transition: 1s;
}

.bgprintd {
  background-image: url("../media/amphigourique1.gif");
  background-repeat: no-repeat;
  background-size: 90%;
  background-position: bottom;
  transition: 1s;
}

.bgprintd:hover {
  background-image: url("../media/amphigourique2.gif");
  background-repeat: no-repeat;
  background-size: 90%;
  background-position: bottom;
  transition: 1s;
}

.bgprinte {
  background-image: url("../media/mephistophelique1.gif");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom;
  transition: 1s;
}

.bgprinte:hover {
  background-image: url("../media/mephistophelique2.gif");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom;
  transition: 1s;
}

.bgprintf {
  background-image: url("../media/emberlucoter1.gif");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom;
  transition: 1s;
}

.bgprintf:hover {
  background-image: url("../media/emberlucoter2.gif");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom;
  transition: 1s;
}






/***********************************************
boton
************************************************/

.capture{
  background-color:rgb(255, 245, 0);
  color: black;
  border: 0;
  font-size: 20px;
  transition: .5s;
  position: fixed;
  bottom: 50px;
  right: 10vw;
  z-index: 1;
}

.capture:hover {
  box-shadow: 0 0 10px blue,
              0 0 25px rgb(255, 0, 115, 1),
              0 0 50px rgb(255, 0, 115, 1),
              0 0 0 100px rgb(255, 0, 115, 0.05),
              0 0 0 80px rgb(255, 0, 115, 0.05),
              0 0 0 60px rgb(255, 0, 115, 0.05),
              0 0 0 40px rgb(255, 0, 115, 0.05);
  transition: .5s;
}






/***********************************************
FRAMES GOOGLE TRENDS U OTRAS PAGINAS
************************************************/

iframe {
  width: calc(38vw - 60px);
  height: 300px;
  border: 0;
  filter: opacity(50%) invert(100%) grayscale(100%);
  transition: 1s;
}

iframe:hover {
  filter: opacity(100%) invert(100%) grayscale(100%);
  transition: 1s;
}


.insergoogletrends {
  z-index: -1;

}

.insergoogletrends:hover {
  z-index: -1;
}

.bonmais{
  filter: opacity(50%) invert(0%) grayscale(100%);
}

.bonmais:hover {
  filter: opacity(100%) invert(0%) grayscale(100%);

}






/***********************************************
EXTRAS
************************************************/


.monitor{
  padding-left: 30px;
}

.reduction h1 {
  font-size: 50px;
  padding-top: 20px;
}

.ampl{
  height: 600px;
  width: calc(38vw - 35px);
}
