/* ------------------------------------------------------------
   Import de la police "Outfit" depuis Google Fonts
------------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/* Reset liens et listes */
a { text-decoration: none; }
li { list-style: none; }

/* Police globale */
body { font-family: 'Outfit', serif; }

/* Wrapper principal (flex horizontal) */
.wrapper { display: flex; }

/* Contenu principal */
.main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    transition: all 0.25s ease-in-out;
    background-color:#F7F7F7;
}

.WP h1{
padding: 25px;
color: green !important;
}

.WP h2{
padding: 25px;
color: navy !important;
}

.WP p{
padding: 25px;
}

.WP a{
padding: 25px;
}

