body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

#wrapper {
    background-color: #FFFFFF; /* Changement de la couleur de fond du wrapper */
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding-bottom: 50px;
}

header {
    background-color: #C43232;
    padding: 10px;
    color: black;
}

nav {
	background-color: #C22727;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

/*nav ul li {
    margin-right: 15px;
}*/

nav ul li a {
    color: white;
    text-decoration: none;
}

footer {
    background-color: transparent;
    color: #000000;
    padding: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

footer p {
	color: #000000;
}

footer a {
    display: inline-block;
    color: #000000;
    text-decoration: none;
}

/*Texte noir h5 sans tipo particulière*/
.container h5 {
    color: #000000;
}

/*Flèche retour en haut*/
.arrow-up {
  position: fixed;
  bottom: 13px;
  right: 20px;
  width: 30px;
  height: 30px;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.3s ease-out;
  opacity: 0.8;
  z-index: 9999;
}

.arrow-up img {
  width: 100%;
  height: 100%;
}

.arrow-up:hover {
  opacity: 0.8;
}