body{
	background-image: url('../medias/fond.png');
	margin: 0;
	font-family: "Poppins";
}

#content{
  display: flex;
  align-items: center;
  justify-content: center;
}

#fond_blanc{
	position: relative;
	background-color: white;
	height: 350px;
	z-index: -1;
}

/* ---------------- NAVIGATION ---------------- */

nav{
	background-color: white;
	padding: 1rem 2rem;
	border-bottom: solid #ec6d5d;
}

nav a{
	padding: 5px;
	margin-right: 50px;
	text-decoration: none;
	font-size: 1em;
	color:#ec6d5d;
}

nav a:visited{
color:#ec6d5d;
}

nav a:hover{
	text-shadow: 1.5px 1.5px 1.5px darkgrey;
}

.titre_nav{
	font-size: 1.4em;
	font-weight: bold;
}

/* ---------------- CTA ---------------- */

#cta{
	margin: auto;
	background-color: white;
	display: inline-block;
	width:70%;
	max-width: 600px;
	text-align: center;
	top: 180px;
	padding: 50px;
	z-index: 10;
	position: absolute;
	padding-bottom: 100px;
}

h2{
	color: #ec6d5d;
	font-size: 1.6em;
}

b{
	font-weight: bold;
	font-size: 1.2em;
	color: gray;
}

p{
	margin-bottom: 35px;
	font-size: 1em;
}

/* ---------------- BUTTON ---------------- */

.button{
	position: relative;
	border-radius: 25px;
	border-style: none;
	padding: 20px;
	padding-inline: 25px;
	color: white;
	top: 20px;
	font-size: 1.1em;
	background-color: #ec6d5d;
	text-decoration: none;
	font-weight: bold;
}

.button:hover{
	background-color: white;
	border: solid 3px #ec6d5d;
	cursor: pointer;
	color: #ec6d5d;
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 500px){
	.dis_nav{
		display: none;
	}
	.button{
		font-size: 0.9em;
	}
}