/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


body {
  background-color: #eabfc4;
  background-size: cover;
  color: Black;
  font-family: Monospace;
  margin: 0;
}

:root {

  --lightPink: #f5e2ea;
  --pink: #C7908E;
  --white: #f8f8f8;
  --brown: 170, 134, 139;
  
}

::selection {
  color: #e1a1aa;
  background: #f4d9de;
}

.middle-button {
  display: flex;
  width: 135px;
  height: 50PX;
  background-color: #F2E8E0;
  /*background: linear-gradient(to bottom, #f5f7f9 0%,#d7e5ef 50%,#c7dbe9 51%,#ebf3f9 100%);*/
  text-decoration: none;
  color: 	rgb(170,134,139);

}


.box {
  margin: 6px;
  border-radius: 5px;
  font-size: 15px;
  align-items: center;
  justify-content: center;
}

div {
  display: flex;
  align-items: center ;
}

.tabbutton:hover {
  background-color: #EDE1D5;
}

h1 {
  color: black;
  text-align: center;
  margin: 5px;
}

h2 {
 color: #C7908E;
 font-size: 26px;
}

h4 {
  color: white;
}

h1, h2, 

/* <div class="mainpimg">
  <img src="fleurblanche.png">
  <img class="mainpimg1" src="tpetitesfleurs.png" style="width:200px;height:200px" >  
  </div>
  
  nav {
  display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
}*/


