/***** Variables *****/
:root{
	--desert: #f4ebdf;
	--black: #000;
}

/****** Base *****/

:hover{
	transition: all 0.3s ease-in-out 0s;
}

a, a:hover{
	text-decoration: none;
}

body{
	background-color: var(--desert);
	font-family: "Poppins", sans-serif;
	color: var(--black);
	height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

h1{
	font-family: "Bricolage Grotesque", sans-serif;
	font-size: 27px;
	font-weight: 400;
}

h1 span{
	font-size: 38px;
	font-weight: 600;
}

h1, p, img{
	position: relative;
	z-index: 1;
}

.prestations p span{
	font-weight: 600;
}

footer{
	position: relative;
}

header:after, footer:after{
	content:"";
    position: absolute;
	background-repeat: no-repeat;
}

/* Animation */

.marquee {
    overflow: hidden;
    white-space: nowrap;
    font-size: 1.5rem;
    width: 100%;
    position: relative;
	z-index: 999;
}

.marquee__inner {
    display: inline-flex;
    white-space: nowrap;
	font-size: 40px;
	font-weight: 200;
	text-transform: uppercase;
	letter-spacing: 5px;
}