.app {
    min-height: initial !important;
    flex-grow: 1;
    position: relative;
}

body {
    height: 100dvh;
    display: flex;
    flex-direction: column;
}

.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;
    height: 2.2rem;
}


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;
    height: 2.2rem;
}

/* 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: 600px) {
    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: 350px) {
    main {
        align-items: center;
        --radius: 110px;
    }

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

    .reponse input {
        height: 2rem;
    }

    .reponse button {
        height: 2rem;
    }

    .app {
        height: 80%;
    }

}