/*------------------------------------------------------------*/
/* Burgbacher Kelian */
/* Finit le 13 janvier */
/* Cette page est dédiée à mettre du style aux pages des activités d'été */
/*------------------------------------------------------------*/
body {
    margin: 0;
    background: 
        linear-gradient(to bottom, rgba(4, 43, 151, 0.9) 30%, #5c566e 100%), /* gradient */ 
        url("../images/homepageMountains.png") no-repeat center top;   /* image centrée */;
    background-size: cover; /* couvrir tout l'écran */
    background-attachment: fixed; /* faire que les montagnes soient toujours là */
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

#explicationSite{
    display: flex;
    flex-direction: column;
    color: white;
    margin-left: 20%; 
    margin-right: 50%; 
    margin-bottom: 25%;
    max-width: 600px;
}
.more{
  color: azure;
}
main {
    padding: 20px;
}
#intro{
    margin-left: 20%; 
    margin-top: 10%;
    margin-bottom: 50%;
}
a{
  color: white !important;
}
@media (max-width: 768px) { /* média querys*/
  .more{
    display: none;
  }
  header {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
  }

  main article {
    margin: 0;
    text-align: center;
  }

  .description {
    font-size: 1rem;
    line-height: 1.5;
  }

  #explicationSite {
    margin: 30px 10px;
    text-align: center;
  }

  #intro{

    margin-left: 0%;
    text-align: center;
  }
  
}
