/* Aquí empieza los body */
body {
	font-family: "Google Sans Code", monospace;
	 font-weight: <weight>;
	 font-style: normal;
	 font-size: 12px;
	 background-color:#f5f5f5 ;
}

body.index{
	background-color: white;
	background-image: url(../taa.png);
	display:block;
	background-size: 100vw;
	background-repeat: no-repeat;
	background-position: center center;
	min-height:100vh;
}

body.cv{
	color: black
}


span:hover {
	color:red;
	cursor:pointer;
	text-decoration: none;

}

body.index h1 {
	margin-top:170px;
}

/* Aquí empieza los H */

h1{
			color: #000000;
			font-size: 14vw;
			font-weight: bolder;
			font-family: "Stack Sans Text", sans-serif;
			letter-spacing: -0.07em;
			text-align: center;
			line-height:0.8em;
			padding: 10px;
			margin: 0px;
			margin-top: 13px;



		}
		h1 strong{
			display: block;
			font-weight: bolder;
			padding: 0px;
		}


h2{
	font-family: "Playfair Display", serif;
	font-size: 40px;
	font-weight: normal;
	color:black;
	font-style: normal;
	text-align: left;
	line-height: 39px;

}

h2 a{

	font-family: "Playfair Display", serif;
	font-size: 25px;
	font-weight: normal;
	color:black;
	font-style: normal;
	text-decoration: none;

}

h2 a:hover {
	text-decoration: none;
	color: red;
}

h3{
	font-weight: bolder;
	font-family: "Stack Sans Text", sans-serif;
}

h3 a {
	font-family: "Stack Sans Text", sans-serif;
	font-size: 12px;
	color:	black;
	text-decoration: none;
	font-weight: normal;
	cursor:pointer;
}

h3 a:hover {
	text-decoration: underline;
}


h4{
	font-weight: normal;
	font-family: "Stack Sans Text", sans-serif;
	font-size: 30px;
	line-height: 30px;
	transition: 1.0s;
	animation-name: rainbow;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	animation-duration: 5s;

}

/* Aquí empieza los estilos de cada pagina */

body.cv h1 {
	text-align: left;
	
}

body.portfoli h1{
	text-align: left;
}


div.flexbox {
	display: flex; 
	flex-direction: column;
	gap: 20px;
	flex-wrap: wrap;
  }


div.header {
	display: flex;
    justify-content: space-between;
    background-color: none;

}

div.footer {
	display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
	
/* Aquí empieza las imagenes */


img{
	display: block;
	width:400px;
	margin:auto;
	transition: transform 0.5s ease;
}

img:hover{
	cursor: pointer;
	transform: scale(110%) rotate(5deg);
	filter: opacity(0.5);

}
/* Aquí empieza los div*/


div.portfoli {
	display: grid;
	grid-template-columns: 1fr;

}

div.portfoli img{
	width: 100%;
}

div.cv{
	display: grid;
	grid-template-columns: 1fr ;
}

div.cv p{
	margin: 0px;
}		


@media screen and (min-width: 768px) {
	div.portfoli {
		grid-template-columns: 1fr 1fr 1fr;
		gap:10px;
	}
	div.cv{
		grid-template-columns: 2fr 1fr 1fr 1fr;
		gap:15px;
	}
}

@keyframes rainbow{
	0% {color:blue;}
	20% {color:deeppink;}
	40% {color:yellow;}
	60% {color:green;}
	80% {color:black;}
	100% {color:blue;}

}












