@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/* Reset minimal */
* {
  box-sizing: border-box;
}

html body {
  font-family: "Montserrat", sans-serif;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  overflow: hidden;
  margin: 0;
  background: #F1EBE1; /* fallback si JS activé mais Granim KO */
  /* Canvas Granim en background */
  /* Contenu */
}
html body #granim-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  padding: 3rem;
}
html body .content {
  color: #F1EBE1;
  padding: 3rem;
  height: 100%;
  width: 100%;
}
html body .content .logo {
  max-width: 350px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  margin-bottom: 2rem;
}
html body .content h2 {
  font-weight: 600;
  line-height: 1.3;
  max-width: 480px;
  width: 100%;
  text-transform: uppercase;
  font-size: 1.35rem;
}
html body .content p {
  max-width: 480px;
}
html body .content p strong {
  font-weight: 600;
}
html body .content p a {
  color: #000000;
  text-decoration: none;
  background: #F1EBE1;
  font-weight: 500;
  padding: 1px 3px;
}

@media screen and (max-width: 430px) and (orientation: portrait) {
  html body {
    /* Canvas Granim en background */
    /* Contenu */
  }
  html body #granim-canvas {
    padding: 2rem;
  }
  html body .content {
    padding: 2rem;
  }
  html body .content div.container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  html body .content .logo {
    max-width: 200px;
  }
  html body .content h2 {
    font-size: 1.1rem;
  }
  html body .content p {
    font-size: 1.04rem;
  }
}/*# sourceMappingURL=app.css.map */