/* --------------------------- 
 * Global Reset
 * ---------------------------- 
*/

/* 
  * Applique la propriété box-sizing: border-box à tous les éléments,
  * ainsi qu'à leurs pseudo-éléments ::before et ::after. 
  * Cela inclut le padding et la bordure dans les dimensions totales des éléments.
*/

/* Applique box-sizing à tous les éléments */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* --------------------------- 
 * Body 
 * ---------------------------- 
*/

body {
  background-image: url(./melanie-voyante-1.jpeg);
  background-size: contain;
  background-attachment: fixed;
  background-position: bottom;
}

/* --------------------------- 
 * Responsive Design 
 * ---------------------------- 
*/

@media (min-width: 768px) and (max-width: 1024px) {
  .back-home {
    margin-bottom: 10px;
  }
  .lien-page-header {
    flex-direction: column;
    padding: 20px 0;
    margin: 0;
  }
}

/* Petites tablettes et grands téléphones */
@media (max-width: 768px) {
  .lien-page-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .back-home {
    padding-left: 20px;
    height: 1.3em;
  }
  body .intro {
    width: 90%;
    margin-top: 6em;
  }
  .presentation {
    font-size: 16px;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .presentation {
    font-size: 15px;
  }
}

/* 
  * --------------------------- 
  * Header 
  * ----------------------------
*/

.accueil button {
  cursor: pointer;
}

/* 
  * --------------------------- 
  * Main 
  * ----------------------------
*/

.intro {
  max-width: 675px;
  width: 100%;
  margin: 90px auto;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.section-presentation {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8em;
}

.section1-col1 {
  margin-top: 35px;
}

.presentation {
  padding: 25px;
  max-width: 550px;
  width: 100%;
  line-height: 23px;
}

.presentation-text-content {
  margin: 20px 0;
  font-size: 18px;
  text-align: justify;
}

.contact-paypal {
  text-decoration: none;
  font-weight: 500;
  color: #0000ff;
}

.contact-paypal:hover {
  cursor: pointer;
  text-decoration: underline;
}
