body, html{
	height: 100%;
	overflow: hidden;
	margin: 0;
}

.button {
  background-color: #bd2e1e; /* Green */
  border: none;
  color: white;
  padding: 7px 18px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
}

.boite-bouton{
	text-align: right;
    width: 100%;
    margin: 0;
    margin-bottom: 11vh;
    margin-right: 16vw;
}

.background-image{
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	background-image: url(images/new_page_accueil_satori_desktop.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	height: 100%;

}


@media only screen and (max-width : 990px){
	.background-image{
		background-image: url(images/new_page_accueil_satori_mobile.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: auto 100%;
		height: 100%;
	}

	.boite-bouton{
		width: 100%;
		text-align: center;
		margin: 0;
		margin-bottom: 13vh;
	}

	.button {
		font-size: 35px;
	}
}