.profile {
    width: 150px;
}

img {
    border: 0;
}

.container {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;

}

.header {
    text-align: center;
    color: white;
}

.pure-menu-link {
    color: #6a6868e6;
}

.pure-menu-horizontal {
    text-align: center;
}

body {
    padding: 20px;
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #181818ea;
        color: white;
    }

    h1 {
        color: white;
    }
}

@media (prefers-color-scheme: light) {
    body {
        background-color: #f2f2f2;
        color: black;
    }

    h1, h3 {
        color: black;
    }
}

a:link {
    text-decoration: none;
}

.pure-menu-link:hover {
    color: #6ecefbdc;
}

.pure-menu-active>.pure-menu-link,
.pure-menu-link:focus,
.pure-menu-link:hover {
    background-color: #252525ea !important;
}





/* Youtube HR */
.hr {
    /* centre verticalement les enfants entre eux */
    align-items: center;

    /* active flexbox */
    display: flex;

    /* garde le texte centré s’il passe sur plusieurs lignes ou si flexbox n’est pas supporté */
    text-align: center;
}

.hr::before,
.hr::after {
    /* remplir le fond du trait permet également d’utiliser des images ou dégradés ! */
    background: rgb(118, 117, 117);

    /* nécessaire pour afficher les pseudo-éléments */
    content: "";

    /* partage le reste de la largeur disponible */
    flex: 1;

    /* l’unité « em » garantit un ratio constant avec la taille du texte */
    height: .035em;

    /* espace les traits du texte */
    margin: 0 .5em;
}
/* Youtube </HR> */

/* Video responsive */
/* Style the wrapper div */
.iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

/* Style the iframe */
.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* Fin video responsive */