/* Crée par Alex Da Silva Vieira
    le 10.01.2025
    Sur cette page on va trouver tout les points en communs de toutes les pages
 */
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  overflow: hidden;
}
html {
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
h1 {
  margin: 0;
  padding: 20px;
  text-align: center;
  font-family: "Georgia", serif;
  color: red;
  font-size: 5vw;
  letter-spacing: 1px;
  text-transform: uppercase;
}
article {
  display: flex;
  flex-direction: column; 
  margin: 3em auto; 
  font-size: 16px;
  text-align: justify; 
  line-height: 1.6; 
  width: 90%;
  max-width: 1200px; 
  background-color: rgba(255, 255, 255, 0.8); 
  border-radius: 10px; 
  padding: 2em; 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
}
article .content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 1em;
  gap: 40px;
}
article a {
  text-decoration: none;
  color: blue;
  display: none;
}
.reverse {
  flex-direction: row-reverse;
  gap: 40px;
}

/*Média queries*/
/*IPhone 14*/
@media (max-width: 600px) {
  h1 {
    font-size: 13px;
  }
  article{
    text-align: center;
    padding: 2em;
    line-height: 1.6;
  }
  article img {
    display: none;
  }
  article p {
    text-align: center;
    margin: 1em auto;
    width: 100%;
  }
  article h3 {
    text-align: center;
    margin-bottom: 1em;
  }
  article a {
    display: block;
    text-align: center;
    margin: 1em auto;
  }
  article iframe {
    display: none;
  }
}
.footer-bottom {
  background-color: black;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px;
  font-size: 14px;
  color: #fff;
}
.footer-bottom div {
  padding: 10px;
}
.footer-bottom a {
  color: white;
  text-decoration: none;
  padding: 5px 10px;
  transition: color 0.3s;
}
.footer-bottom a:hover {
  color: gray;
}
iframe {
  border: none;
}