* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

button {
    background-color: #ffffff;
    height: 50px;
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;

    color: #000000;
    border: solid 2px rgb(50, 50, 50);
    font-size: 1.5rem;

    font-weight: 600;
    font-family: sans-serif;
    border-radius: 6px;

    cursor: pointer;

    box-shadow: 0 0 10px rgba(0, 0, 0, 0.438);
    transition: .2s;
}

button:hover {
    transform: scale(1.05);
}

.Etage {
    width: 90%;
    aspect-ratio: 2 / 1;

    display: flex;
    justify-content: space-around;
    align-items: center;
}

.Etage > div {
    height: 90%;
    width: 45%;
}

.partieInput {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-template-rows: repeat(9, 1fr);
    gap: 0;
}

.inputContainer {
    height: 100%;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.inputContainer > input {
    height: 100%;
    width: 100%;

    background-color: #fff;

    border: solid 1px black;
    text-align: center;

    font-family: sans-serif;
    font-weight: 800;
    font-size: 1.5rem;

    padding-left: 3px;
}


.fleche {
    height: 30px!important;
    width: 30px!important;

    font-size: 3.5rem;
    font-weight: 900;


    display: flex;
    justify-content: center;
    align-items: center;

}


.outpoutSudoku {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-template-rows: repeat(9, 1fr);
    gap: 0;
}

.outpoutContainer {
    height: 100%;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: aquamarine;

    background-color: #fff;

    border: solid 1px black;
    text-align: center;

    font-family: sans-serif;
    font-weight: 800;
    font-size: 1.5rem;

    padding-left: 3px;

    overflow: hidden;
}

.borderHaut {
    border-top: solid 3px black!important;
}
.borderBas {
    border-bottom: solid 3px black!important;
}
.borderDroit {
    border-right: solid 3px black!important;
}
.borderGauche {
    border-left: solid 3px black!important;
}