/* Conteneur principal */
    body {
            margin: 0;
            font-family: Arial, sans-serif;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: #f0f0f0;
            overflow: hidden;
        }

        #reaction-container {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100vh;
            pointer-events: none;
            overflow: hidden;
        }

        .emoji-button {
            font-size: 2rem;
            padding: 10px 20px;
            margin: 10px;
            border: none;
            background-color: #ffffff;
            border-radius: 10px;
            cursor: pointer;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .emoji-button:hover {
            transform: scale(1.1);
            box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.15);
        }

        .reaction {
            position: absolute;
            font-size: 8rem; /* Augmente la taille de base des émojis */
            bottom: 10px;
            animation: float 2s linear forwards, grow 0.5s ease forwards;
        }

        @keyframes float {
            0% {
                transform: translateY(0) scale(1.2);
                opacity: 1;
            }
            100% {
                transform: translateY(-300px) scale(1.2);
                opacity: 0;
            }
        }

        

        #event-logo {
            margin-bottom: 20px;
        }

        #event-logo img {
            max-width: 300px;
            height: auto;
        }