/* variables */
:root {
    --text: #243d25;
    --clair: #cff2c5;;
    --medium: #BFF6C3;
    --ombre: #B0EBB4;
    --fonce: #ACE1AF;
    --ombreHsla: 	hsla(124, 60%, 81%, 0.9);

    --bs-nav-link-color: var(--primary);
    --bs-link-color: var(--secondary);
    --bs-link-hover-color: var(--light);

    /* breakpoints */
    --bp-xs: 0;
    --bp-sm: 576px;
    --bp-md: 768px;
    --bp-lg: 992px;
    --bp-xl: 1200px;
    --bp-xxl: 1400px;
}

body {
  margin: 0;
}

header{
  margin-top: 0;
  display: flex;
  justify-content: center;
  align-items: center; 
  flex-wrap: wrap;
  background-color: var(--fonce); 
}

.navBar{
  margin-right: 50px;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none; 
  justify-content: center;
}

.logo{
    width: 200px;
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 2px ridge rgba(41, 77, 51, 0.6);
}

li{
  /* top | right | bottom | left */
  margin: 15px 10px 10px 10px;
  text-decoration: none;
}

.btn {
  text-decoration: none;
  justify-content: space-between;
  background-color: var(--text); 
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgb(100, 151, 100);
  box-shadow: 2px 2px rgb(138, 180, 134), 0.5em 5px 1em rgb(64, 128, 0);

  /* border: 5px ridge rgba(77, 207, 112, 0.6); */
  /* box-shadow: 3px 3px rgb(40, 40, 40), -0.5em 0 .4em rgb(64, 128, 0); */
}

a { 
  text-decoration: none;
  color: var(--clair);
  text-align: center;
  max-width: 300px;
}

.btn:hover > a, .btn:hover {
  background-color: var(--clair);
  color: var(--text);
}

/* ---------------------index--------------------------------- */



.content { 
  flex-direction: row-reverse;
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  width: 80%;
  background-color: var(--ombre); 
  padding: 2rem;
  
}
.item {
  display: flex;
  flex-direction: column;
  flex: auto;
  margin: 1em;
  padding: 0.5em;
  max-width: 60%;
  min-width: 0;

  /* Apparence ombre trop kitch */
  /* background-color: var(--medium); */
  /* box-shadow: 10px 10px 15px hsla(124, 62%, 20%, 0.1); */
  /* box-shadow: 10px 10px 15px  rgb(64, 128, 0), -0.5em 0 .4em hsla(124, 62%, 20%, 0.3); */
}

.note {
  margin-left: auto;
  margin-right: auto;
  padding-top: 2rem;
}


.image {
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
  width: 300px;
  height: auto;
  max-width: 80%;
  box-shadow: 10px 10px 15px hsla(124, 62%, 20%, 0.6);
  
}


@media screen and  (min-width: 893px) {
  
  header{
    justify-content: space-between;
  }

  .logo {
    margin-left: 2rem;
  }


}

@media screen and  (min-width: 1093px) {
  li{
    /* top | right | bottom | left */
    margin: 15px 50px 10px 10px;
  }

}