/* Site — reset, body, typo (proche Mon exploitation) */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 20px;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  max-width: 100%;
  overflow-x: clip;
  display: flex;
  flex-direction: column;
  font-family: "Boogaloo", cursive;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  color: #303030;
  background: #ffffff;
}

h1,
.font-titre {
  font-family: "Boogaloo", cursive;
  font-size: 1.4rem;
  font-weight: 500;
  color: #ff8800;
}

h2,
h3,
.page-element--sous-titre {
  font-family: "Boogaloo", cursive;
  font-size: 1.1rem;
  font-weight: 500;
  color: #303030;
}

.is-hidden {
  display: none !important;
}

[hidden] {
  display: none !important;
}

.muted {
  color: #919191;
  font-size: 0.9rem;
}

a {
  color: inherit;
  text-decoration: none;
}

a:where(:link, :visited) {
  color: inherit;
  text-decoration: none;
}

.main {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  box-sizing: border-box;
  flex: 1 0 auto;
  background: transparent;
}

@media (min-width: 1300px) {
  .main {
    width: 80%;
  }
}
@media (min-width: 1600px) {
  .main {
    width: 60%;
  }
}
