body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            overflow: hidden;
            background: url('images/kateryna-hliznitsova.jpg') no-repeat center center fixed;
            background-size: cover;
        }

        canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* Conteneur du corps sans tête */
        #avatar-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 150px;
            height: auto;
        }

        /* Image du corps sans la tête */
        #avatar-body {
            width: 100%;
            height: auto;
        }

        /* Image de la tête, superposée sur le corps */
        #avatar-head {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: auto;
            transition: transform 0.1s ease-out;
            transform-origin: center;
        }

        /* Style pour l'affichage des informations du visiteur */
        #visitor-info {
            position: fixed;
            bottom: 10px;
            left: 10px;
            background: rgba(0, 0, 0, 0.3);
            color: orange;
            padding: 10px;
            border-radius: 5px;
            font-family: Arial, sans-serif;
        }

        /* Style pour la phrase humoristique */
        .memory-phrase {
            color: #7f8559;
            font-size: 1.5em;
            text-align: center;
            position: fixed;
            top: 20px;
            width: 100%;
            font-family: Arial, sans-serif;
        }

        /* Style pour les liens au centre */
        .center-links {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            font-family: Arial, sans-serif;
        }

        /* Style pour chaque lien */
        .center-link {
            display: block;
            font-size: 1.5em;
            color: #7f8559;
            margin: 50px 0;
            text-decoration: none;
        }

        .center-link:hover {
            color: #FF8C00;
        }
