/*Fotografia de fons*/
body{
	margin:0 1.5rem;
	background-image: radial-gradient(circle, beige, lightpink);
}


/*Tipografies i composició de textos*/
h1{
	color:darkorange;
	font-family: League Script;
	font-size:20px;
	text-align: center;
}

h2{
	color:darkorange;
	font-family: barlow;
	font-size:20px;
	text-align: left;
	margin-top:3rem;
}

h2.taula {
	color:darkorange;
	font-family: barlow;
	font-size:20px;
	text-align:center;
	margin-top:3rem;
}


h3{
	color:darkorange;
	font-family: barlow;
	font-size:30px;
	text-align: center;
	margin:0.5rem;
}


ul{ 
	color:darkorange;
	font-family: barlow;
	font-size:20px;
	text-align: center;
	list-style: none;
}
.block-list {
	padding:0;
}

p{
	color:darkorange;
	font-family: barlow;
	font-size:20px;
	text-align: left;
  line-height:1.6rem;
  margin-bottom: 1.2rem;
}


/*ANIMACIONS*/
/*Foto Cèlia}*/
@keyframes girar {
  0%   { transform: rotate(-15deg); }
  50%  { transform: rotate(15deg); }
  100% { transform: rotate(-15deg); }
}

.rotar{
	display: block;
  margin: 3rem auto;
  max-width: 90%;
  animation: girar 10s cubic-bezier(.42, 0, .58, 1) infinite alternate;
}

/*Fotos portfoli*/
.efecte{
  transition: transform 0.6s ease-in-out;
}
.efecte:hover{
transform: scale(1.15)
}

/*Botons Header*/
.menu a {
  color: darkorange;
  text-decoration: none;
  margin-left: 1rem;
  margin-top: 0.8rem;
}
.menu a:hover {
  text-decoration: underline;
}

/*Configuració de flexbox i grids*/
div.flexbox {
	display: flex;
	gap:1.5rem;
	align-items: center;
	justify-content: space-evenly;
	flex-wrap: wrap;
 }

div.contacte {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	flex-wrap: wrap;
}

div.portfoli {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 20px; 
	row-gap: 50px;
}
div.portfoli img{
	width: 100%;
	height: 100%;
	object-fit: cover;
  	display: block;
}

/*Header*/
.site-header {
  justify-content: space-between;
  align-items: center;
  color: darkorange;
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: barlow;
  margin-bottom: 3rem;
  padding: 0.8rem 1.5rem;
}

.menu {
	display:flex;
	gap: 1.2rem;
	justify-content: space-between;
}


/*Footer*/
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: darkorange;
  padding: 1rem 0;
  font-size: 14px;
  font-family: barlow;
  margin-top: 3rem;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.site-footer div {
  text-align: center;
  flex: 1;
}

/*Elements responsive*/
 	@media (max-width: 768px){
 		.site-header,
 		.site-footer {
 			flex-direction: column;
 			gap: 0.8rem;
 		}
 		.menu	{
 			justify-content: center;
 		}
 		h2, h2.taula {
 			margin-top: 2rem;
 			text-align: center;
 			width: 100%;
 			margin-left: 0;
 			margin-right: 0;
 		}
 	}

