/* === RESET DE BASE === */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background-color: #f9f9f9;
}
/* === TYPOGRAPHIE === */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 0.5em;
    font-weight: 600;
}

p {
    margin: 0 0 1em;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* === LISTES === */
ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* === IMAGES === */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* === FORMULAIRES === */
input, button, textarea, select {
    font: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

/* === SECTIONS === */
section{
    max-width: 100%;
    padding: 0px 12px;
    height: auto;
}

.background-black{
    background-color: #000000;
}

.text-fff{
    color: #fff;
}

.center-div{
    max-width: 1024px;
    margin: 0px auto;
}

.div-center{
    max-width: 1024px;
    margin: 0px auto;
}

@media only screen and (max-width: 768px){
}
