* {
	margin: 0;
	padding: 0;
}

html, body {
	height: 100%;
	width: 100%;
}

body {
	align-items: center;
  background-color: #FFF;
	display: flex;
	font-family: 'Raleway', sans-serif;
	flex-direction: column;
	justify-content: center;
	/*overflow: hidden;*/
}

div.container {
	align-items: center;
	align-self: center;
	background: 'salon.jpg' center center;
	border-radius: 100%;
	display: flex;
	flex-direction: column;
	min-height: 800px;
	justify-content: center;
	width: 800px;
}

h1 {
  color: #fff;
  /*font-family: 'Playfair Display', serif;*/
  font-family: 'Comic Sans MS', serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 46px;
  margin: 0 0 60px 0;
  text-align: center;
  text-shadow: 0px 2px 4px rgba(34,62,66,.75);
  width: 50%;
}

a.btn {
	background: linear-gradient(45deg, rgba(255,184,115,0.65) 0%,rgba(255,124,189,0.65) 50%,rgba(108,0,153,0.65) 100%);
	border-radius: 2px;
	box-shadow: 0px 2px 4px rgba(34,62,66,.25);
  color: #fff;
  font-size: 18px;
  letter-spacing: 1px;
  padding: 16px 32px;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: box-shadow 1s ease;
	transition: box-shadow 1s ease;
}

a.btn:hover {
	box-shadow: 0px 4px 4px rgba(34,62,66,.5);
	-webkit-transition: box-shadow 1s ease;
	transition: box-shadow 1s ease;
}
.btn{border:0; }
.btn1{background:transparent url("poubelle.jpg") no-repeat center;width:80px;height:80px;}
.btn2{background:transparent url("gomme.jpg") no-repeat center;width:80px;height:80px;}





.navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  
  /* j ai cherche pour modifier width un truc comme grid template columns comme pour rows ci dessou avec 50vh mais c est deja pris au dessus */
  
  
  /* La hauteur des boites est à définir : changer la valeur 50vh (viewport width) à volonté, en px, vh */
  grid-template-rows: repeat(2, 50vh);
  
  /* Espace entre les images */
  grid-gap: 1px;
}

.navigation-item {
  display: flex;
  align-items: flex-end;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  text-decoration: none;
}

.navigation-item:nth-child(1) {
  background-image: url(http://patriciamarguet.fr/soins.jpg);
}

.navigation-item:nth-child(2) {
  background-image: url(http://patriciamarguet.fr/epilations.jpg);
}

.navigation-item:nth-child(3) {
  grid-column-start: span 2;
  background-image: url(http://patriciamarguet.fr/salondattente.jpg);
}

.navigation-label {
  flex: 1 1 auto;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  text-align: center;
  transition: all 0.2s ease;
}

.navigation-item:hover .navigation-label,
.navigation-item:focus .navigation-label {
  background: rgba(0, 0, 0, 0.8);
}