:root {
  --color-clear: 248, 248, 248;
  --color-dark: 34, 34, 34;
  --color-footer: 236, 235, 234;
  --color-1: 190, 250, 80;
  --color-light-grey-1: 232, 228, 226;
  --color-socialmedia-icon: rgba(var(--color-dark), 1);
  --color-red: 229, 57, 53;
}

/* reset.css */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family:
    "NHGD",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
}

/* Exclure les icônes Font Awesome */
i,
i::before,
i::after {
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

h1 {
  font-size: 2.5em; /* ~40px */
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2em; /* ~32px */
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 2.5rem;
}

h3 {
  font-size: 1.5em; /* ~24px */
  font-weight: 600;
  line-height: 1.4;
}

h4 {
  font-size: 1.25em; /* ~20px */
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1rem;
}

h5 {
  font-size: 1.1em; /* ~17.6px */
  font-weight: 500;
  line-height: 1.5;
}

h6 {
  font-size: 1em; /* ~16px */
  font-weight: 500;
  line-height: 1.5;
}

a {
  color: rgb(var(--color-dark));
  font-weight: 500;
}

strong {
  font-weight: 700;
}

i {
  font-style: normal;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  background-color: rgb(var(--color-clear));
  color: rgb(var(--color-dark));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-align: center;
}

main {
  flex: 1 1 auto;
  margin: auto;
  width: 100%;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5vw;
  padding-right: 5vw;
  padding: 3rem 5em 6rem 5em;
  box-sizing: border-box;
}

section {
  padding: 3rem 0 1.5rem 0;
}

section.small-padding-top {
  padding-top: 1rem;
}

.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: rgb(var(--color-1));
  color: rgb(var(--color-dark));
  text-decoration: none;
  font-weight: 500;
  margin-top: 2.5rem;
  border-radius: 10px;
}

.button i {
  margin-left: 0.3rem;
}

textarea {
  max-height: 500px;
}

@media (max-width: 700px) {
  .container {
    padding-left: 3vw;
    padding-right: 3vw;
  }
}

@media (max-width: 600px) {
  header h1 {
    font-size: 1.5rem;
  }
}
