.infoBulle {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 1%;
    backdrop-filter: blur(5px);
    font-weight: bold;
    z-index: 200;
    cursor: pointer;
    max-width: 40%;
    min-width: 20%;
    text-align: center;
}

.infoBulle:hover {
    animation-play-state: paused;
}

.infoBulle.green {
    background-color: rgba(0, 206, 0, 0.8);
}

.infoBulle.orange {
    background-color: rgba(255, 165, 0, 0.8);
}

.infoBulle.red {
    background-color: rgba(255, 0, 0, 0.8);
}