html {
	font-family: "Source Sans 3", sans-serif;
}

header h1 {
	color:#FF8B00;
	text-transform: uppercase;
	font-size: 46px;
	font-weight: 400;
	padding: 15px 20px;
}

header	h1 span {
	font-weight: 700;
}

.accueil-bloc {
	text-align: center;
	margin: auto;
	position: relative;
}

.accueil-bloc h2 {
	color: #FFB55C;
	font-size: 150px;
	font-weight: 900;
	text-shadow: 10px 3px 1px #FFE1BE;
	margin: 0;
}

.accueil-bloc img {
	width: 75%;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	z-index: -1;
	opacity: 0.7;
}

.accueil-bloc h1 {
	color: #FF8B00;
	text-align: center;
	font-size: 60px;
	font-weight: 900;
	margin-bottom: 12%;
}

.accueil-bloc a {
	font-size: 30px;
	color: #fff;
	background-color: #FF8B00;
	border-radius: 100px;
	margin-top: 50px;
	padding: 5px 30px;
	text-decoration: none;
	transition: all 0.5s; 
}

.accueil-bloc a:hover {
	color: #fff;
	background-color: #000;
	transition: all 0.5s;   

}

@media (max-width: 1024px) {

	.accueil-bloc h2 {
		font-size: 100px;
	}

	.accueil-bloc img {
		width: 100%;
	}

	.accueil-bloc h1 {
		font-size: 40px;
	}

	.accueil-bloc a {
		font-size: 20px;
	}
}