* {
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
        -webkit-tap-highlight-color: transparent;
        text-decoration: none;
    }

    carousel-auto:not(:defined) {
        display: none;
    }

    body {
        position: relative;
    }

    main {
        margin: 2% 5%;
    }

    main h1 {
        text-align: center;
        margin: 50px 0 20px 0;
    }

    main h1 strong {
        color: #888;
        font-weight: bold;
    }

    aside {
        background: #eff6ff;
        padding: 10px 20px;
        text-align: center;
        font-size: 11pt;
        color: #1e40af;
        vertical-align: baseline;
    }

    main p {
        color: #888;
        text-align: center;
        font-size: 13pt;
    }

    main img {
        margin: 25px auto;
        display: block;
    }

    nav {
        text-align: center;
    }

    nav a.btn-icon {
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        border-radius: 10px;
        margin-right: 2%;
        color: black;
        background-color: white;
        border: 1px solid #ddd;
        padding: 8px;
        text-decoration: none;
    }

    nav a.btn-icon:last-child {
        margin-right: 0;

    }

    nav a.btn-icon svg {
        width: 20px;
        margin-right: 8px;
        height: 20px;
        fill: #333;
    }

    nav a.btn-icon.filled {
        background: #cc0000;
        color: #fff;
        border: none;
    }

    nav a.btn-icon.filled svg {
        fill: #fff;
    }

    #top {
        height: 35px;
        width: 35px;
        position: fixed;
        bottom: 15px;
        right: 15px;
        background-repeat: no-repeat;
        background-position: center;
        background-image: url('img/top.png');
        background-size: 24px auto;
        background-color: red;
    }

    footer {
        padding: 15px 50px;
        font-weight: 300;
        font-size: 9pt;
        color: #414141;
        background-color: #f8f9fb;
    }

    footer nav {
        margin: 0 auto;
        padding: 25px 0 0;
    }

    footer nav a:after {
        content: "-";
        margin: 0 5px
    }


    footer nav a:last-child:after {
        content: ""
    }

    footer nav a {
        color: red;
    }

    @media only screen and (max-width: 667px) and (orientation: portrait) {

        /* Styles pour iPhone SE 1ère génération */
        aside {
            font-size: 11pt;
            padding: 15px;
        }

        main h1 {
            font-size: 14pt;
            margin: 25px 0;
        }

        main p {
            font-size: 11pt;
        }

        nav a.btn-icon {
            font-size: 10pt;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 20px 0;
        }

        #top {
            display: none;
        }
    }