/* Commun */

*,
*:after,
*:before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
}

body {
    font-family:Arial, Helvetica, sans-serif;
    background-color:#EEEFF4;
}

p, li{
    line-height:1.5em;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: #226C8B;
}

a:hover {
    color: #226C8B;
}


footer {
    width: 100%;
    padding: 20px 0;
    margin-top: 50px;
    background-color: #EEEFF4;
    border-top: 1px solid #d1d5db;
    text-align: center;
}

footer p {
    color: #226C8B;
    font-size: 0.9rem;
    margin: 0;
}

/* Commun */