@import url("https://fonts.googleapis.com/css?family=Arapey|Source+Sans+Pro");

body {
	height: 100%;
	width: 100%;
	overflow: hidden;
	margin: 0;
	background-image: url(fond.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	font-family: 'Source Sans Pro', sans-serif;
}
.bloc-texte{
	position: absolute;
    top: 20%;
    left: 20%;
    font-size: 1.5rem;
    color: #737373;
    text-align: center;
}
h1{
	font-family: 'Arapey', serif;
	color:#121212;
}
p{
	margin: 1rem 0;
	text-transform: uppercase;

}
a{
	text-decoration: none;
	color: #737373;
}
a:hover{
	color:#b9b9b9;
}
a img{
	display: block;
	margin: 0 auto;
    padding: 8px 0 0 0;
}
a.button{
	display: block;
	width: 300px;
    height: 131px;
    margin: 0 auto;
    border-radius: 10px;
	background: #737373;
	transition: all 0.5s ease-in-out
}
a.button:hover{
	background: #b9b9b9;
}
@media screen and (max-width: 900px){
	body {
		background-size: auto;
	}
	.bloc-texte{
		position: unset;
	}
}