* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    background-color: #17313e;
    font-family: Arial, Helvetica, sans-serif;
    padding: 2vh 7vw;
    color: #ffffff8d;
}

main {
    color: #17313e;
    box-shadow: 0.5rem 0px 2rem #7b6e6e90;
    padding: 2rem;
}
main,
.touche,
button,
input {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 2rem;
    background-color: #ffffff8d;
    justify-content: center;
    align-items: center;
}
.touche,
button,
input {
    padding: 2rem;
    box-shadow: 0px 0px 0.8rem #00000080;
    border: none;
}
input {
    width: fit-content;
    padding: 0.5rem;
}
form div {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}
button {
    color: #17313e;
    padding: 1rem;
    width: fit-content;
}

button:active {
    background-color: #ffffff75;
    box-shadow: 1px 1px 0.8rem #00000040;
}

table {
    background-color: #ffffff8d;
    height: 15vw;
    width: 15vw;
}
tr {
    background-color: #00000040;
    padding: 0.4rem;
    text-align: center;
}

#tableau {
    overflow: auto;
    display: grid;
    gap : 1rem;
    max-height: 50vh;
    max-width: 100vw;
    padding: 2rem;
    grid-template-columns: 1fr 1fr;
}

label {
    display: none;
}

@media (min-width : 768px) {
    form div {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}
label{ display: flex;}
    
}