/*Header*/
header {
  color: var(--color-white);
  justify-content: space-between;
  align-items: center;
  height: auto;
}
.mainTitleBlock {

  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mainsubtitle {
margin: auto;

  letter-spacing: .5rem;
  font-size: 1.8em;
}

.title-elmt {
  padding: 10px;
  margin: 0 auto;               /* centré sous le h1 */
  font-size: 1.2rem;
  opacity: 0.85;                /* optionnel, petite touche zen */
}
.mainTitleBlock h2{
  font-family: "myTitleFont", Verdana, Geneva, Tahoma, sans-serif, sans-serif;
  font-size: 1.4em;
}

/*New*/
.home-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.home-icon {
  width: 20px;
  height: 20px;
}

/* Réaction au hover identique au texte */
.mainsubtitle a:hover .home-icon {
  filter: brightness(0) saturate(100%) invert(30%) sepia(80%) saturate(500%) hue-rotate(-10deg);
  transform: scale(1.1);
}


/*End header*/
/**********************/
