@font-face {
	font-family: "Livingst";
	src: url('Montserrat-Light.otf');
}
html { 
  margin:0;
  font-family:"Livingst";
  font-size:1.6em;
  padding:0;}
a{color:#683d15;text-decoration:none;}
a:hover{color:#a57a3c;}
.texte{
	position:absolute;
	top: 50%;
	z-index:1000;
	text-align:center;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	transform: translateY(-50%); /* tiré de la moitié de sa propre hauteur */
	animation: fadein 3s;
	-moz-animation: fadein 3s; /* Firefox */
	-webkit-animation: fadein 3s; /* Safari et Chrome */
	-o-animation: fadein 3s; /* Opera */
	width: 100%;
	color:#fff;
}
.texte img {height:80px;}
@keyframes fadein {
	from {
		opacity:0;
	}
	to {
		opacity:1;
	}
}
@-moz-keyframes fadein { /* sur Firefox */
	from {
		opacity:0;
	}
	to {
		opacity:1;
	}
}
@-webkit-keyframes fadein { /* sur Safari et Chrome */
	from {
		opacity:0;
	}
	to {
		opacity:1;
	}
}
@-o-keyframes fadein { /* sur Opera */
	from {
		opacity:0;
	}
	to {
		opacity: 1;
	}
}
.large-header {
   position: relative;
   width: 100%;
   background: #111;
   overflow: hidden;
   background-size: cover;
   background-position: center center;
   z-index: 1;
}

.demo .large-header {
   background-image: url("https://www.pierrite.fr/wp-content/uploads/2021/04/image_accueil-2.jpg");
}

.main-title {
   position: absolute;
   margin: 0;
   padding: 0;
   color: #F9F1E9;
   text-align: center;
   top: 50%;
   left: 50%;
   -webkit-transform: translate3d(-50%, -50%, 0);
   transform: translate3d(-50%, -50%, 0);
}

.demo .main-title {
   text-transform: uppercase;
   font-size: 4.2em;
   letter-spacing: 0.1em;
}

.main-title .thin {
   font-weight: 200;
}

@media only screen and (max-width: 768px) {
   .demo .main-title {
      font-size: 3em;
   }
}