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

header {
    background-color: #596643;
    color: #fff;
    text-align: center;
    padding: 1em 0;
    display: flex;
    align-items: center; /* Aligner le contenu verticalement */
}

.logo {
    margin-right: 1em;
    margin-left: 1em;
    filter: drop-shadow(2px 2px 3px black);
}

.logo img {
    max-width: 100%; /* Assurez-vous que l'image du logo ne dépasse pas la largeur du contenant */
}

header h1 {
    margin: 1em;
    text-transform: uppercase;
    text-shadow: 4px 4px 5px black;
}
/* Sous-titre (Randonnée... */
.subtitle {
    background: #03224c;
    padding-top: 0%;
    border: none;
    border-color: aqua;
    padding: 2px;
    text-align: center;
    color: #fff;
}
/* Menu */
nav {
    margin-top: 1em;
}

ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

li {
    margin: 0 1em;
}

a {
    text-decoration: none;
    color: black;
}

a:hover {
    color: rgb(215, 65, 65);
}
/* Fin menu */

#content {
    padding: 1em;
    padding-top: 1em;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

#content h3 {
    text-transform: uppercase;
    text-align: center;
    background-color: #03224c;
    margin-top: 0px;
  }

/* Propriétés des blocs */
.bloc1, .bloc2, .bloc3 {
    flex: 1;
    min-width: 0; /* Fix for overflow issue in some browsers */
    border-radius: 5px;
    padding: 20px;
    background-color: #596643;
    color: #fff;
    box-shadow: 4px 4px 5px black ;
    
  }
/* Bouton */
  .bloc1 .button {
  background-color: #fff;
  color: #03224c;
  border-radius:1rem;
  box-shadow: 2px 2px 2px #000000;
  font-size: 12px;
  text-align: center;
  text-decoration: none;
  margin: auto;
  display: block;
  width:30%;
}
/* Hover */
.bloc1 .button:hover {
  /* color: rgb(220, 38, 38); */
  background-color: rgb(215, 65, 65);
  border-radius: 1em;
}

.bloc1 .button strong {
    font-size: 0,5rem;
}
/* Fin bouton */
.bloc2 .video2 {
    display: block;
    width: 90%;
    margin: auto;
}

img {
    max-width: 80px;
    max-height: 75px;
    margin-left: 42%;
    margin-top: -2px;
    margin-bottom: -1%;
}
  
/*new End*/
footer {
    background-color: #596643;
    color: #fff;
    text-align: center;
    padding: 1em 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

#scroll_to_top {
    position: fixed;
    width: 25px;
    height: 25px;
    bottom: 50px;
    right: 30px;
  }
  #scroll_to_top img {
    width: 25px;
  }

@media screen and (max-width:600px) {
    section {
        flex-direction: column;
        margin-bottom: 60px;
    }

}
@media only screen and (max-width:600px) {
    /* Styles pour les écrans de 600px de largeur ou moins */
    body {
        font-size: 14px;
    }
}

@media screen and (max-width:900px) {
    footer {
       font-size: xx-small;
    }
}

@media screen and (min-width:1439px) {
    .bloc1, .bloc2, .bloc3 {
        min-height: 200px;
       }
       .bloc2 .video2 {
        height: 80%;

       }
    }