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

main {
    color: #17313e;
    box-shadow: 0.5rem 0px 2rem #7b6e6e90;
    display: flex;
    gap: 1rem;
    padding: 2rem;
    flex-direction: column;
    width: 100%;
}

.touche,
button,
input {
    border-radius: 2rem;
    background-color: #ffffff8d;
    box-shadow: 0px 0px 0.8rem #00000080;
}

button {
    color:#17313e;
    padding: 1rem;
    width: fit-content;
}

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

button,
 input,
 form{
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;  
    padding: 1rem;
}
input:focus{
    outline:2px solid #17313e;
}
form {flex-direction: column;
    display: flex;
    gap : 1rem}
    
.none {display: none;}
.no:focus-visible, .no:focus { outline : 2px solid #ab0808;
background-color: #ff000014;}


