body {
	background-color: white;
	font-family: "IBM Plex Mono", monospace;
	cursor: url(heart.png),auto;
}


/* estils de titols i paràgrafs*/

h1 {
	color: blue;
	font-size: 40px;
	font-weight: 400;
	border: 4px solid blue;
	padding: 4px;
}

h2 {
	display: flex;
	justify-content: space-around;
	background-color: blue;
	color: white;
	font-weight: 400;
	font-size: 20px;
	background-image: linear-gradient(blue,blueviolet);

}

h3 {
	color: blue;
	font-size: 20px;
	padding: 1px;
}

p {
	padding: 15px;
	font-size: 13px;
	color: blue;
	border: 3px dashed blue;
}

li {
	padding: 5px;
	font-size: 13px;
	color: blue;
	border: 3px double blue;
}


/*foto CV + efectes*/

div.fotolaura img {
	width: 200px;
	border: 3px solid blue;
}

div.fotolaura {
	display: flex;
	justify-content: left;
	align-items: top;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
}

div.fotolaura img:hover {

	animation-name: bounce;
	animation-duration: 0.5s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

@keyframes bounce {
	0% {
		transform: translate(0px,0px);
	}
	25% {
		transform: translate(0px,5px);
	}
	50% {
		transform: translate(0px,10px);
	}
	75% {
		transform: translate(0px,5px);
	}
	100% {
		transform: translate(0px,0px);
	}
}

/*grid del CV*/

div.curriculum {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

@media screen and (min-width:320px) {
	div.curriculum {
		background-color: ghostwhite;
		display: grid;
		grid-template-columns: 1fr;
		flex-direction: row;
	}
}


@media screen and (min-width:768px) {
	div.curriculum {
		grid-template-columns: 1fr 1fr;
		background-color: ghostwhite;
		flex-direction: row;
	}
}

/*grid del portfoli*/

div.portfoli {
	display: grid;
	grid-template-columns: 1fr ;
	gap: 20px;
}


@media screen and (min-width: 768px) {
	div.intro {
		background-color: lightgray;
		flex-direction: row;
	}

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

	}
}

@media screen and (min-width: 1400px) {
	div.intro {
		background-color: lightgray;
		flex-direction: row;
	}

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

	}
}

div.item {
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
	gap: 0px;
	padding: 10px;
	padding-bottom: 10px;
	border: 5px solid blue;
	background-color: rgba(0,0,300,0.100);
}

/*img portfoli*/

div.portfoli img {
	width: 100%;
	margin-bottom: 20px;
	border: 3px solid blue;
	filter: brightness(30%);
}

div.portfoli img:hover {
	
	filter: blur(0px);
	filter: brightness(100%);
}

/*taula*/

table {
	padding: 5px;
	border: 3px solid blue;
	color: blue;
}

td {
	padding:5px;
}