/* Eléments principaux de la page */

body
{
    background-color: #FFFEEF; /* Le fond de la page sera jaune pâle */ 
    font-family: 'Trebuchet MS', Arial, sans-serif;
    color: #181818;
}

#bloc_page
{
    width: 800px;
    margin: auto;
}

section h1, footer h1, nav a
{
    font-family: Arial, serif;
    font-weight: normal;
    text-transform: uppercase;
}
/* Header bannière */

#banniere_image
{
    margin-top: 15px;
    height: 475px;
    border-radius: 5px;
    background: url('images/banniere.png') no-repeat; 
    background-color: #620542;
    position: relative;
    box-shadow: 4px 2px 4px #A4A4A4;
    margin-bottom: 25px;
}

/* Navigation */

nav ul
{
    list-style-type: none;
    display: flex;
}

nav li
{
    color: #620542;
    margin-right: 15px;
}

a
{
    color: #000000;
    font-size: 1.3em;
    padding-bottom: 3px;
    text-decoration: underline;
}

a:hover
{
    color: #ffffff;
    border-bottom: 3px solid teal;
}

/* Corps */

section
{
    display: flex;
    margin-bottom: 20px;
}

article, aside
{
    text-align: justify;
}

article
{
    margin-right: 20px;
    flex: 3;
    
}


article p, ul
{
    font-size: 1.0em;
    color: teal;

}

article h1
{
    color: #ffffff;
    text-align: center;
    background-color: #620542;
    box-shadow: 0px 2px 5px #1c1a19;
}
article h4
{
    color: #620542;
}

#anoter
{
    font-size: small;
}

aside
{
    flex: 1.2;
    position: relative;
    background-color: teal;
    box-shadow: 0px 2px 5px #1c1a19;
    border-radius: 5px;
    padding: 10px;
    color: white;
    font-size: 0.9em;
}

#fleche_bulle
{
    position: absolute;
    top: 100px;
    left: -12px;
}

#mains_fil
{
    text-align: center;
}

#mains_fil img
{
    border: 1px solid #181818;
    background-color: #ffffff;
}

aside img
{
    margin-right: 5px;
}

#separation
{
  text-align: center;
}

#ateliers h1
{
    color: #ffffff;
    background-color: teal;
}

/* Footer */

footer
{
    padding-top: 25px;
}

footer p
{
    font-size: 0.8em;
    color: teal;
}

footer h1
{
    font-size: large;
    color: #ffffff;
    background-color: teal;
}

/* Copyright */

#copyright
{
    font-size: small;
    color: #ffffff;
    background-color: teal;
    text-align: center;
}
