/* Auteur : Rodrigo Sousa
     Date de création : 18.12.2024
     Description : Site du projet 293
     Dernière modification : 14.01.2025 */
     body {
      font-family: Arial, sans-serif;
      background-image: url(../IMG/carte_background.png);
      color: white;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      opacity: 0.9;
      height: 100%;
      background-attachment: fixed;
      margin: 0;
      padding: 0;
    }
    
    h1 {
      font-size: 48px;
      margin-top: 20px;
      text-align: center;
      width: 100%;
      top: 20px;
    }
    
    .image-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      margin: 20px;
      margin-left: 0%;
    }
    
    .image-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      font-size: 24px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    }
    
    .image-link {
      display: block;
      text-align: center;
      margin-bottom: 20px;
    }
    
    main {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      gap: 10px;
      min-height: 80vh; 
      margin: 0 auto;
    }
    
    a:visited,
    a:link {
      text-decoration: none;
      color: #b04d21;
    }
    
    li {
      display: flex;
      justify-content: center;
      align-items: center;
      height: calc(10vh);
    }
    
    @media (max-width: 600px) {
      .image-wrapper {
        margin: 10px;
      }
    
      .image-wrapper img {
        width: 50px;
        height: auto;
      }
    
      .image-text {
        font-size: 14px;
      }
    
      h1 {
        font-size: 32px;
      }
    
      main {
        gap: 5px;
      }
    }
    
    footer {
      text-align: center;
      padding: 20px;
      position: relative;
      bottom: 0;
      width: 100%;
    }
    
    iframe {
      display: block;
      margin-bottom: 20px;
      width: 100%; 
      max-width: 800px; 
    }
    