body{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding:0;
}


html {
    scroll-behavior: smooth
}

body,html {
    min-height: calc(100dvh + 1px)
}

body {
    background-color: var(--sand);
    color: var(--black)
}

body.is-loading {
    cursor: wait
}

body.no-scroll {
    overflow: hidden
}

body.en,body.en .cookie-popup p {
    font-family: "Poppins",sans-serif !important;
    font-weight: 400
}

body.en {
    font-size: 13px;
    letter-spacing: -.02em;
    line-height: 1.35
}

@media only screen and (min-width:320px) {
    body.en {
        font-size: calc(13px + 2*(100vw - 320px)/(1280 - 320))
    }
}

@media only screen and (min-width:1280px) {
    body.en {
        font-size: 15px
    }
}

.App {
    text-align: center;
  }
  
  .App-logo {
    height: 40vmin;
    pointer-events: none;
  }
  
  @media (prefers-reduced-motion: no-preference) {
    .App-logo {
      animation: App-logo-spin infinite 20s linear;
    }
  }
  
  .App-header {
    background-color: #EAE9E5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: calc(10px + 2vmin);
    color: white;
  }
  
  .App-link {
    color: #61dafb;
  }
  
  @keyframes App-logo-spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  
  * {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    /* font-family: Arial, Helvetica, sans-serif; */
    background-color: #EAE9E5;
  }
  
  /* Appliquer une hauteur pleine à tout */
  html, body, #root {
    height: 100%;
  }
  
  /* Structure en colonne */
  .wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Prend toute la hauteur de la fenêtre */
  }
  
  /* Le contenu prend l'espace disponible */
  .content {
    flex: 1;
  }
  
  .full-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  main {
    flex: 1;
  }