@charset "utf-8";
/* CSS Document */

body {
    min-height: 100vh;
    margin:0;
    display: flex;
    flex-direction: column;   
    background-color: #eee;
}

header.titreDePage h1 {
    height: 60px;
    background-color: #957597;
    margin: 0;
    text-align: center;
    color: white;
    font-size: 46px;
}
header.titreDePage a {
    text-decoration: none;
    color: inherit;
}
header.titreDePage h1 .lettrine {
    color: #2D142F;
}

header.titreDePage h2 {
    height: 36px;
    background-color: #555779;
    margin: 0;
    text-align: center;
    color: #191B32;
    font-size: 30px;
}

main {
    flex-grow: 1;
}

footer.piedDePage {
    background: linear-gradient(transparent 0%,  transparent 40%, #957597 40%, #957597 100%);
    color: #2D142F;
    padding-top:40px;
    text-align: center;
}