body {
    background-image: url(bull.jpg);
    background-size: cover;
}

/* Navegació/Menú */
nav {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  padding: 15px 30px;
  background-color: #fff;
  border-radius: 7px;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  margin-bottom: 5px;
}

.menu-item {
  font-size: 16px;
  font-family: "Inter", sans-serif;
}

.menu-item a {
  text-decoration: underline;
  color: #000;
  transition: color 0.3s;
}

.menu-item a:hover {
  color: #666;
}

main {
  margin-top: 0px;
  padding: 20px;
}

/* Estils Generals */
h1 {
	font-style: normal;
	text-align: center;
}

h2{
	color: #919191;
	text-align: center;
	font-style: normal;
	font-size: 2em;
}

h3 {
	margin: 5px;
	font-weight: 600;
}

p {
	margin: 5px;
}

/* CV */
div.info {
	border: dotted;
	border-color: black;
	background-color: white;
	border-width: 5px;
	max-width: 300px;
	margin: auto;
	text-align: center;
}

div.info:hover {
	animation-name: rotate;
	animation-duration: 0.8s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}
	25% {
		transform: rotate(90deg);
	}
	50% {
		transform: rotate(180deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

div.info h2 {
	font-family: 'Neonderthaw', cursive;
	font-size: 300%;
	margin: 5px;
}

div.info p {
	font-family: "Montagu Slab", serif;
	font-size: 80%;
}

div.CV {
margin: auto;
max-width: 800px;
}

div.form {
	background-color: white;
	border-radius: 7px;
	margin: 10px;
	padding: 1rem;
}
div.form 	h2 {
		color: black;
		text-align: left;
		margin: 0;
		font-family: "Inter", sans-serif;
		font-weight: 500;
	}

div.form 	h3 {
		margin-left: 20px;
		font-family: "Montagu Slab", serif;
	}

div.form 	p {
		margin-left: 30px;
		font-family: "Montagu Slab", serif;
	}


.idiomes {
  text-align: left;
}

.idiomes h2 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 15px;
}

.idiomes table {
  width: 100%;
  border-collapse: collapse; 
  font-size: 16px;
}

.idiomes td {
  padding: 10px 8px;
  border-bottom: 1px solid #ddd;
	font-family: "Montagu Slab", serif;
}

.idiomes tr:last-child td {
  border-bottom: none; 
}

.idiomes td:first-child {
  font-weight: 600;
}

/* Portfoli */
div.portfoli {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	margin: auto;
}

div.portfoli img {
	width: 100%;
}

div.item {
	background-color: white;
	border-radius: 7px;
	margin: 5px;
	padding: 1rem;
}

div.item h2 {
	font-family: "Montagu Slab", serif;
	color: black;
	font-size: 115%;
	text-align: center;
	margin: 5px;
	
}

div.item p {
	margin: 5px;
	text-align: center;
	font-family: "Montagu Slab", serif;
	}	

	
	/* Controls Responsive Portfoli */
@media screen and (min-width: 768px) {
div.portfoli {
	grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 324px) {
div.portfoli {
	grid-template-columns: 1fr;
}
