/* COULEURS */
:root {
    --color-primary: #e4e1d9;  /* #FFAD00  */
    --color-secondary: #465873;
}

/* Backgrounds */
header#header {
    background-color: var(--color-primary);
}
header#header #hero-banner {
    background: var(--color-secondary);
}
#page ul {list-style: disc inside;}

/* LOGO */
header#header #hero-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 0;
}

header#header #hero-banner img.logo {
    max-width: 200px; 
    margin-top: 15px; 
    height: auto;
}