/* Fuentes */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital@1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital@1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300&display=swap');

*{
    margin: 0;
    padding: 0;
}

html{
	scroll-behavior: smooth;
}

p{
	font-family: 'Roboto Mono', monospace;
}
/* Boton flotante */
.btn-flotante {
	font-size: 20px;
	font-weight: bold; 
	color: black; 
	border-radius: 3px; 
	letter-spacing: 2px; 
	background-color: white;
	padding: 8px 15px; 
	position: fixed;
	bottom: 40px;
	right: 40px;
	transition: all 300ms ease 0ms;
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
	z-index: 99;
}
.btn-flotante a{
	text-decoration: none;

}
.btn-flotante:hover {
	background-color: black;
	color: white;
	box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.3);
	transform: translateY(-7px);
}

/* Menu de navegacion*/
#menuimg{
    width: 40px;
    height: 40px;
    padding-top: 15px;
    margin-left: 5px;
	display: none;
}

#checkbox-id{
    display: none;
}

header{
    width: 98.5vw;
    background-color: black;    
	border-bottom: 1px solid white;
	position: fixed;
	z-index: 100;
	font-family: 'Bebas Neue', cursive;
	font-size: 1.23vw;
}

.menu ul{
    list-style-type: none;
    display: flex;
    margin: 0;
    justify-content: center;
}

.menu ul li{
  padding:10px 50px;
  margin-right: 10px;
  margin-left: 10px;
  transition-duration: 2s; 
}

.menu ul li:hover{
    background-color: white;
    transition: all 0.4s ease-in-out;
color: black;

}

.menu ul li:hover a{
    color: black;
}
.menu ul a li{
    text-decoration: none;
    color:white;
	display: inline-block;
}
#volver{
	margin-right: 20vw;
}

/* Primera division */
#division1{
background-color: black;
width: 98.5vw;
height: 100vh;
display:flex;
justify-content: center;
align-items: center;
}

/* Nombre y animacion */
#presentacion h1{
color: white;
font-family: 'Bebas Neue', cursive;
font-size: 5rem;
}

.btn {
	cursor: pointer;
	position: relative;
	padding: 10px 20px;
	font-size: 28px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	transition: all 1s;
  }
  .btn:after, .btn:before {
	content: " ";
	width: 10px;
	height: 10px;
	position: absolute;
	border: 0px solid white;
	transition: all 1s;
  }
  .btn:after {
	top: -1px;
	left: -1px;
	border-top: 5px solid white;
	border-left: 5px solid white;
  }
  .btn:before {
	bottom: -1px;
	right: -1px;
	border-bottom: 5px solid white;
	border-right: 5px solid white;
  }
  .btn:hover {
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
  }
  .btn:hover:before, .btn:hover:after {
	width: 100%;
	height: 100%;
  }
  
  .data-container {
	background: black;
	
	display: flex;
	justify-content: center;
	align-items: center;
  }
 
  .wrapper {
    margin-top: 5vh;
	color: white;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-right: 16px;
	font-family: 'Teko', sans-serif;
	font-weight: 500;
  }
  
  .typing-demo {
	width: 26vw;
	animation: typing 2s steps(22), blink .5s step-end infinite alternate;
	white-space: nowrap;
	overflow: hidden;
	border-right: 3px solid;;
	font-size: 34px;
  }
  
  @keyframes typing {
	from {
	  width: 0
	}
  }
	  
  @keyframes blink {
	50% {
	  border-color: transparent
	}
  }


/* Presentacion - Division 2 */
#division2{
    background-color: white;
    width: 98.5vw;
    height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}

#perfil{
background-color: black;	
width: 80vw;
height: 70vh;
display:flex;
justify-content: center;
align-items: center;
}

#infoperfil{
	color: white;
border: 1px solid white;
margin: 0 100px 0 100px;
padding: 15px;
}

#perfil img{
	width: 200px;
	height: auto;
    margin-right: 25px;
}




/* Paso por el ILLIA - Division 3 */
#division3{
	width: 98.5vw;
	height: 100vh;
	background-color:black;
display: flex;
justify-content: center;
align-items: center;

}

#illia{
	background-color: white;	
	width: 35vw;
	height: 70vh;	
	display: flex;
	justify-content: center;
	align-items: center;
    border: 2px solid white;
	}
	
	#infoillia p{
	color: white;
	background-color: black;
	border: 1px solid white;
	padding: 15px;
	width: 30vw;
	}
   
 	#infoillia h3{
    margin-bottom: 15px;
    color: black;
	display: flex;
	justify-content: center;
   }

@keyframes SlideShow{
	0%{ width:100%; left: 100%}
	5%{  left: 0}
	25%{  left: 0}
	30%{ width:100%; left: -100%}
	30.001%{ width:0; left: -100%}
	100%{ width: 0; left: 100%}
}
.slider{
	width: 35vw;
	height: 70vh;
	position: relative;
	overflow: hidden;
	margin-right: 100px;
	border: 2px solid white;
	z-index: 90;

}
.slide{
	position:absolute;
	width:100vw;
  height:100vh;
	height: inherit;
	overflow:hidden;
	animation: SlideShow 14s infinite;
	background-position: center;
	background-size: cover;
	background-color: #000;
	color: #fff;
	font-size: 36px;
	display: flex;
	align-items: center;
}
.slide:nth-child(1){
	left: 0%;
	animation-delay: 21s;
	background-image: url(../img/2021);
}
.slide:nth-child(2){
	left: 0%;
	animation-delay: 18s;
	background-image: url(../img/2020.jpg);
}
.slide:nth-child(3){
	left: 0%;
	animation-delay: 15s;
	background-image: url(../img/2019.jpg);
}
.slide:nth-child(4){
	left: 0%;
	animation-delay: 11s;
	background-image: url(../img/2018.jpg);
}
.slide:nth-child(5){
	left: 0%;
	animation-delay: 8s;
	background-image: url(../img/2020.jpg);
}
.slide:nth-child(6){
	left: 0%;
	animation-delay: 5s;
	background-image: url(../img/2016.jpg);
}
.slide:nth-child(7){
	left: 0%;
	animation-delay: 2s;
	background-image: url(../img/familia.jpg);
}
.slide:nth-child(8){
	left: 0%;
	animation-delay: -1s;
	background-image: url(../img/guille.jpg);
}




  /* Sobre mi - Division 4*/

  #division4{
	width: 100vw;
	height: 100vh;
	background-color: white;
	display: flex;
    justify-content: center;
    align-items: center;
	flex-direction: row-reverse
} 


#datos {
	background-color: black;
	width: 35vw;
	height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
#datos iframe{
	width: 30vw;
	height: 45vh;

}
#datos h3{
color: white;
display: flex;
justify-content: center;
margin-bottom: 10px;
}

#sobremi{
height: 70vh;
width: 35vw;
background-color: black;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;

}

#sobremi h3{
	color: white;

}
#sobremi p{
	background-color: white;
	color: black;
	border: 1px solid white;
padding: 10px;
margin-left: 20px;
}

#redes{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: relative;
right: 8vw;
}
#redes i{
	padding: 10px;
	transition: 1s ease-in-out;
}
#redes i:hover{
transform: scale(1.5);
}
#redes a{
	color: #000;
	padding: 5vh;
}

/* Futuro - Division 5 */
#division5{
	width: 98.5vw;
	height: 100vh;
	background-color: black;
	display: flex;
	justify-content: space-between;
	align-items: center;
	
}

#futuro{
	background-color: white;	
	width: 40vw;
	height: 45vh;	
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 5vw;
	padding: 15px;
}
#contenedorbig{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-right: 7vw;
}
.contenedor{ 
	width: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: auto;
	margin-bottom: 5vh;
    position: relative;
	z-index: 80;

  }
  .contenedor a:hover{
	  cursor: pointer;
  }
  .contenedor figure{
	position: relative;
	height: 30vh;
  width: 25vw;
  overflow: hidden;
  box-shadow: 0px 15px 25px rgba (0,0,0,0.50);
  cursor: pointer;
  border: 1px solid white;
  }
  
  .contenedor figure img {
	width: 100%;
	height: 100%;
	transition: all 500ms ease-out;
  }
  .contenedor figure .capa{
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.5);
	transition: all 500ms ease-out;
	opacity: 0;
	visibility: hidden;
	text-align: center;
  }
  .contenedor figure:hover > .capa {
	opacity: 1;
	visibility: visible;
  }
  .contenedor figure:hover > .capa h3{
	margin-top: 70px;
	margin-bottom: 15px;
  }
  .contenedor figure:hover > img{
	transform: scale(1.3);
  }
  .contenedor figure .capa h3{
	color: black;
	font-weight: 400;
	margin-bottom: 120px;
	transition: all 400ms ease-out;
	 margin-top: 30px;
  }
  .contenedor figure .capa p{
	color: black;
	font-size: 15px;
	line-height: 1.5; 
	width: 100%;
	max-width: 220px;
	margin: auto;
  }
  





/* Media queries */
/* Celulares vertical */
@media screen and (max-width:768px){

	.btn-flotante {
	font-size: 14px;
	padding: 12px 20px;
	bottom: 20px;
	right: 20px;
	}
	/* Division1 */
#menuimg{
	display: block;
}

header{
	height: 12vh;
	width: 100vw;
	font-size: 20px;
}
	.menu{
        position: absolute;
        margin-left: -100%;
        width: 100vw;
		transition: all .5s ease-in-out;
		color: #000;
    }
	.menu ul li a{
		text-decoration: none;
		color:black;
		display: block;
	}
	.menu ul li:hover{
		background-color: black;
		transition: all 0.4s ease-in-out;
		color: white;
	}

    
	#menuimg{
        display: block;
        padding:13px;
	
    }

    img:hover{
        cursor: pointer;
    }

  .menu ul{
      flex-direction: column;
      background-color: white;    
      padding: 10px;
  }
  

  #checkbox-id:checked ~ .menu{
      margin-left:0;
      transition: all 0.5s ease-in-out;

  }
  
 /* Division 2 */
#perfil img{
	width: 30vw;
	height: auto;
margin-left: 5px;
}
#perfil{
	padding: 10px;
}
#infoperfil{
	margin: 1px;
	font-size: 13px;
}

/* Division3 */
#division3{
display: flex;
flex-direction: column-reverse;
}
#illia{
	background-color: white;	
	width: 70vw;
	height: 50vh;	
	}
	
	#infoillia p{
	padding: 10px;
	width: 30vw;
	font-size: 13px;
	}
   
 	#infoillia h3{
	font-size: 20px;
   }

.slider{
	width:70vw;
	height:40vh;
	margin-top: 10px;
	margin-right: 0px;
}
/* Division 4 */
#division4{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#datos {
	width: 70vw;
	height: 45vh;
	margin-top: 10px;
}
#datos iframe{
	width: 45vw;
	height: 30vh;

}

#sobremi{
	height: 45vh;
	width: 70vw;
	margin-top: 10px;
	}
	
	#sobremi h3{
	color: white;
	font-size: 20px;
	}
	#sobremi p{
    font-size: 10px;
	padding: 10px;
	margin-right: 15px;
	}
#redes{
	flex-direction: row;
	left: 1vw;
}
/* Division 5 */
#division5{
	display: flex;
	flex-direction: column;
}

#futuro{
	background-color: white;	
	width: 70vw;
	height: 40vh;
	margin-top: 10vw;	
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 5vw;
	padding: 15px;
} 
#textofuturo{
font-size: 10px;
}
#contenedorbig{
width: 100vw;
height: 50vh;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	margin-right: 0;

}
.contenedor{ 
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0;
	margin-left: 10px;

  }
  
  .contenedor figure{
	  height: auto;
      width: 40vw;

  }

}

@media screen and (max-width:635px){
	
	/* Division3 */
	#division3{
	display: flex;
	flex-direction: column-reverse;
	}
	#illia{
		background-color: white;	
		width: 70vw;
		height: 50vh;	
		}
		
		#infoillia p{
		padding: 10px;
		width: 30vw;
		font-size: 11px;
		}
	   
		 #infoillia h3{
		font-size: 18px;
	   }
	
	
}

@media screen and (max-width:500px){
	
	/* Division3 */
	#division3{
	display: flex;
	flex-direction: column-reverse;
	}
	#illia{
		background-color: white;	
		width: 70vw;
		height: 50vh;	
		}
		
		#infoillia p{
		padding: 10px;
		width: 30vw;
		font-size: 10px;
		}
	   
		 #infoillia h3{
		font-size: 18px;
	   }
	/* Division 4 */
	#division4{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	
	#datos {
		width: 70vw;
		height: 45vh;
		margin-top: 10px;
	}
	#datos iframe{
		width: 45vw;
		height: 30vh;
	
	}
	
	#sobremi{
		height: 45vh;
		width: 70vw;
		margin-top: 10px;
		}
		
		#sobremi h3{
		color: white;
		font-size: 20px;
		}
		#sobremi p{
		font-size: 8px;
		padding: 10px;
		margin-right: 15px;
		}

}


@media screen and (max-width:370px){
	.btn-flotante {
		font-size: 14px;
		padding: 12px 20px;
		bottom: 20px;
		right: 20px;
		}
		/* Division1 */
	#menuimg{
		display: block;
	}
	
	header{
		height: 12vh;
		width: 100vw;
		font-size: 20px;
	}
		.menu{
			position: absolute;
			margin-left: -100%;
			width: 100vw;
			transition: all .5s ease-in-out;
		}
		.menu ul li a{
			text-decoration: none;
			color:black;
			display: block;
		}
		.menu ul li:hover{
			background-color: black;
			transition: all 0.4s ease-in-out;
			border-radius: 10px;
		}
		
		.menu ul li:hover a{
			color: white;
		}
		
		#menuimg{
			display: block;
			padding:13px;
		
		}
	
		img:hover{
			cursor: pointer;
		}
	
	  .menu ul{
		  flex-direction: column;
		  background-color: white;    
		  padding: 10px;
	  }
	  
	
	  #checkbox-id:checked ~ .menu{
		  margin-left:0;
		  transition: all 0.5s ease-in-out;
	
	  }
	  
	 /* Division 2 */
	#perfil img{
		width: 30vw;
		height: auto;
	margin-left: 5px;
	}
	#perfil{
		padding: 10px;
	}
	#infoperfil{
		margin: 1px;
		font-size: 10px;
	}
	
	/* Division3 */
	#division3{
	display: flex;
	flex-direction: column-reverse;
	}
	#illia{
		background-color: white;	
		width: 70vw;
		height: 50vh;	
		}
		
		#infoillia p{
		padding: 10px;
		width: 30vw;
		font-size: 8px;
		}
	   
		 #infoillia h3{
		font-size: 15px;
	   }
	
	.slider{
		width:70vw;
		height:40vh;
		margin-top: 10px;
		margin-right: 0px;
	}
	/* Division 4 */
	#division4{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	
	#datos {
		width: 70vw;
		height: 45vh;
		margin-top: 10px;
		font-size: 15px;
	}
	#datos iframe{
		width: 45vw;
		height: 30vh;
	
	}
	
	#sobremi{
		height: 45vh;
		width: 70vw;
		margin-top: 10px;
		}
		
		#sobremi h3{
		color: white;
		font-size: 15px;
		}
		#sobremi p{
		font-size:8px;
		padding: 10px;
		margin-right: 15px;
		}
	#redes{
		flex-direction: row;
		left: 1vw;
	}
	/* Division 5 */
	#division5{
		display: flex;
		flex-direction: column;
	}
	
	#futuro{
		background-color: white;	
		width: 70vw;
		height: 40vh;
		margin-top: 10vw;	
		display: flex;
		justify-content: center;
		align-items: center;
		margin-left: 5vw;
		padding: 15px;
	} 
	#textofuturo{
	font-size: 8px;
	}
	#contenedorbig{
	width: 100vw;
	height: 50vh;
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		margin-right: 0;
	
	}
	.contenedor{ 
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 0;
		margin-left: 10px;
	
	  }
	  
	  .contenedor figure{
		  height: auto;
		  width: 40vw;
	
	  }	
}