
    #infoText {
        position: absolute;
        top: -15%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #567be0;
        color: rgb(255, 251, 0);
        padding: 5px;
        display: none;
        border-radius: 5px;
        white-space: nowrap;
        z-index: 1;
    }
    img:hover + #infoText {
        display: block;
    }
    #tournesol-logo {
        position: fixed;
        right: 28px;
        bottom: 10px;

    }
    body {
        margin: 0;
        padding: 0;
        font-family: Arial, sans-serif;
        padding-top: 60px; 
        padding-bottom: 60px;
    }
    .container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 20px;
        flex-wrap: nowrap;
        width:80%;
        max-width: 1200px;
        margin: 0 auto;
    }
    .text-container {
        width: 50%;
        padding: 10px;
        border: 5px solid black;
        font-size: 17px;
        min-height: 200px;
        
    }
    .text-container2 {
        width: 50%;
        padding: 10px;
        font-size: 30px;
  
        box-sizing: border-box;
    }
    .text-container2 strong {
        font-weight: bold;
        text-decoration: underline;
    }
   .header-image {
    width :600px;
    margin: 0 auto;
   }
    
    .image-container {
        width: 50%;
        justify-content: center;
    }
    .image-container2 {
        width: 25%;
        min-width: 100px;
        max-width:300px;
        justify-content: center;
    }
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    @media screen and (max-width: 768px) {

        .container {
            flex-direction: column;
            flex-wrap: wrap;
            align-items: center;
            
            width:100%;
        }
        .text-container,
        .text-container2,
        .image-container,
        .image-container2 {
            width: 90%; 
        }
        .header-image {
            width: 90%; 
        }
        body { 
            margin:10px 5px 10px 5px;
        }
        .text-container2 {
            font-size:25px; 
        }
    }
