        body {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
            display:block;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: #f0f0f0;
        }
        .container {
            display: flex;
            max-width: 797px;
            width: 100%;
            margin-left: 20%;
            height: 670px;
        }
        .bouton {
            display: inline-block;
            margin: 2px auto;
            padding: 5px 16px;
            background-color: #6f6c14;
            text-decoration: none;
            border-radius: 8px;
            height: 10x; /* un peu plus grand pour l'icône */
            line-height: 15px; /* centrer verticalement */
            vertical-align: middle;
            font-size: 16px;
            color: white;
            border: 3px outset #444; /* bordure effet relief */
        }
        .bouton:hover {
            color: skyblue;
            text-decoration: none;
            border: 3px inset #444; /* bordure effet relief */
        }
        .image-container {
            flex: 1;
            border:  outset #acacac 8px;
            height: 650px;
            align-content: center;
        }
        .image-container img {
            width: 380px;
            height: 650px;
        }
        .links-container {
            height: auto;
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-left : 20px;
            
        }
        .links-box {
            width: 75%;
            max-height: 670px;
            border: 8px outset #ccc;
            background-color: #ccc;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            box-sizing: border-box;
        }
        .links-box a {
            display: block;
            margin: 16px 0;
            padding: 10px 15px;
            text-decoration: none;
            color: #ffffff;
            font-size: 18px;
            border: 3px #333 inset;
            border-radius: 5px;
            transition: background-color 0.3s;
            width: 130px;
            text-align: center;
        }
        .links-box a:hover {
            background-color: #900079;
            color:white;
        }