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

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



li {
    border-radius: 2rem;
    padding: 0.5rem 2rem;
    border: 1px solid #ffffff8d;
    display: flex;
    gap : 2rem
}
.none {display: none;}



