.number:not(.visible) {
    color: transparent !important;
}

.reponse{
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-left: 3rem;
}

.reponse input {
    width: 4rem;
    height: 3rem;
    text-align: center;
    font-size: 1.4rem;
}

.reponse button {
    width: 4rem;
}

dialog {
    all: unset;
    display: none;
}


dialog[open] {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-in-out;
}

.contenuDialog {
    padding: 2rem 0;
    margin-right: 7rem;
    width: 40vmin;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(0, 0, 0, 0.418);
    gap: 2vmin;
}

.contenuDialog button {
    width: 15vmin;
}
