*,
*::after,
*::before {
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
}

/* ================================================================ POLICES =============================================================== */

@font-face {
  font-family: 'BowlbyOne';
  src: url('fonts/BowlbyOne-Regular.ttf') format('truetype');
}

@font-face {
  font-family:'Satoshi';
  src: url('polices/Satoshi-Medium.woff') format('woff');
}


/* ============================================== BACKGROUND IMAGE ========================================= */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(images/smile_bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  filter: blur(4px);
  z-index: -1;
}

.content {
  position: relative;
  z-index: 1;
}


/* ======================================================= Terms PAGE ================================================ */


.mentionsLegales {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 3rem;
  gap: 5rem;
}

.mentionsLegales h2 {
  margin-top: 7.5vh;
  color: white;
  font-family: "BowlbyOne", sans-serif;

}

.catMention {
  width: 80%;
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 0.5rem;
  color: white;
  font-family: "Satoshi", sans-serif;

}


