/* === Couleurs === */
/*
vert: #006633ff;
rouge: #993333ff;
noir: #1c2526ff;
blanc: #ffffffff;
argent: #a9a9a9ff;
*/

/* Flèche sympa : https://codepen.io/shawnlooi/pen/eeXmrQ */


html {
  font-size: 16px;
}

body {
  font-size: 1rem; /* 16px */
}

h1 {
  font-size: 2.5rem; /* 40px */
}

h2 {
  font-size: 2rem; /* 32px */
}

h3 {
  font-size: 1.5rem; /* 24px */
}

p {
  font-size: 1rem; /* 16px */
}

small, footer {
  font-size: 0.875rem; /* 14px */
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  h1 {
    font-size: 2rem; /* 28px */
  }
  h2 {
    font-size: 1.75rem; /* 24–26px */
  }
  h3 {
    font-size: 1.25rem; /* 20px */
  }
  p {
    font-size: 1rem; /* 14px */
  }
  small, footer {
    font-size: 0.75rem; /* 12px */
  }
}


/* === Polices d'écriture === */
.open-sans {
  font-family: "Open Sans", sans-serif;
}

.oswald {
  font-family: "Oswald", sans-serif;
}

.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
}

.roboto {
  font-family: "Roboto", sans-serif;
}

/* === Typographie globale === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}


p, ul, li {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}



/* === Mise en page générale === */
body {
  margin: 0;
  padding-top: 0;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px 20px 20px;
  line-height: 1.6;
  color:#1c2526ff;
  text-align: justify;
}

footer {
  background-color: #f8f8f8;
  text-align: center;
  padding: 20px;
  margin-top: 20px;
  border-top: 1px solid #ddd;
  color:#1c2526ff;
}

footer a{
  color: #993333ff;
}

footer img{
  width: 30%;
  height: auto;
  margin-right: 10px;
}

main a{
  color: #993333ff;
}

/* boutons */
.button {
  background-color: #fff;
  border: 0 solid #e2e8f0;
  border-radius: 1.5rem;
  box-sizing: border-box;
  color: #0d172a;
  cursor: pointer;
  display: inline-block;
  font-family: 'Roboto';
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
  padding: 1rem 1.6rem;
  text-align: center;
  text-decoration: none #0d172a solid;
  text-decoration-thickness: auto;
  transition: all .1s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0px 1px 2px rgba(166, 175, 195, 0.25);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button:hover {
  background-color: #993333;
  color: #fff;
}

@media (min-width: 1024px) {
  .button {
    font-size: 1.125rem;
    padding: 1rem 2rem;
  }
}

@media (max-width: 1024px) {
  main{
    padding-left: 10%;
    padding-right: 10%;
  }

  p{
    font-size: 1rem;
  }

  h1{
    font-size: 3rem;
  }

  h2{
    font-size: 2rem;
  }

  h3{
    font-size: 1.5rem;
  }

  .button{
    font-size: 1.3rem;
    padding: 1.2rem 2rem;
  }

}

@media (max-width: 1024px) {
  main {
    margin-top: 60px;
    padding-top: 0px; 
  }
}
