/* Remise à zéro des styles par défaut des navigateurs */
* {
    margin: 0;
    padding: 0;
}

html, body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
    height: 100%;
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

input, textarea {
    font-family: inherit;
    border: 1px solid #ccc;
    padding: 10px;
}
