#boutonFuyant {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px 10px;
    font-size: 20px;
    cursor: pointer;
    background-color: #1c0514;
    border: 4px solid #c71586;
    color: #c71586; font-weight: bolder;
    -webkit-box-shadow: 5px 5px 15px 5px #151b1e; 
    box-shadow: 5px 5px 15px 5px #151b1e;
    transition: transform 0.4s ease; /* Animation pour le déplacement */
    cursor: pointer;
    text-decoration: none;
}
#bontonFuyant:hover{
    background-color: #c71586;
    border: 4px solid #1c0514;
    color: #1c0514;
    transition: transform 0.4s ease; 
}
#compteur {
    position: absolute;
    top: 10px; right: 10px;
    padding: 10px 20px;
    background-color: #1c0514;
    color: #c71586;
    font-size: 224px;
    font-weight: bold;
    border: 2px solid #c71586;
    border-radius: 5px;
    -webkit-box-shadow: 3px 3px 10px 3px #151b1e;
    box-shadow: 3px 3px 10px 3px #151b1e;
}
html{background-color: #263238;}