body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0; /* Couleur de fond */
}

canvas {
    border: 2px solid black; /* Bordure pour le canvas */
    background-image: url('images/background.jpg');
}
.choix {
    position: absolute;
    top: 20px; /* Ajustez la position verticale comme nécessaire */
    left: calc(50% - 150px); /* Ajustez la position horizontale comme nécessaire */
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.choix label,
.choix select,
.choix button {
    margin: 5px;
}

.choix select {
    width: 50px; /* Ajustez la largeur selon vos besoins */
}

.choix button {
    padding: 8px 12px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 3px;
}

.choix button:hover {
    background-color: #0056b3;
}

.pause-button {
    position: absolute;
    left: 50%;
    font-size: 20px;
    transform: translate(-50%, -50%);
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.pause-button:hover {
    background-color: #0056b3;
}

.pause-title {
    position: absolute;
    left: 50%;
    top: 20%;
    transform: translate(-50%, -50%);
    font-size: 100px;
    color: red;
    text-align: center;
}

