svg {
    max-height: calc(100% / sqrt(2));
    max-width: calc(100% / sqrt(2));
}

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

.reponse {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-left: 3rem;
    height: calc(var(--radius) * 2);
    justify-content: center;
}

.reponse input {
    width: 4rem;
    height: 3rem;
    text-align: center;
    font-size: 1.4rem;
    background-color: #ffdd98;
    border-radius: 8px;
}

.reponse button {
    width: 4rem;
}


main {
    --radius: 200px;
    --inner-wheel-color: rgb(76, 71, 66);
    display: flex;
    justify-content: center;
    align-items: start;
}



.contenuDialog {
    padding: 2rem 0;
    width: 11rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid #ffce6d;
    border-radius: 20%;
    gap: 1rem;
}

.contenuDialog button {
    width: 8rem;
}

/* Rotation animation */
@keyframes spinH {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.spinH {
    animation: spinH 1.5s ease-in-out;
}

.spinAH {
    animation: spinH 1.5s ease-in-out;
    animation-direction: reverse;
}


@media (max-width: 450px) {
    main {
        align-items: center;
        flex-direction: column;
        --radius: 110px;
    }

    .reponse {
        margin: 0;
        flex-direction: row;
        align-items: center;
    }

    .reponse input {
        height: 3rem;
    }

    .reponse button {
        height: 3rem;
    }

    .app {
        height: 80%;
    }
}

@media (max-height: 450px) {
    main {
        align-items: center;
        --radius: 110px;
    }

    .contenuDialog button {
        font-size: 0.7rem;
    }


    .reponse {
        margin: 3rem;
        align-items: center;
    }

    .reponse input {
        height: 2rem;
    }

    .reponse button {
        height: 2rem;
    }

    .app {
        height: 80%;
    }

}