<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html{
    height: 100%;
    font-size: 16px;
}
body{
    background-color: var(--z-theme-background-color);
    background-image: var(--z-theme-background-image);
    background-repeat: no-repeat;
    color: var(--z-theme-color);
    margin-left:0;
    margin-right:0;
    margin-bottom: 0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    display: flex;
    flex-direction: column;
    align-items: center;
    --line-height: 2;
    line-height: var(--line-height);
}
/* ONLY on the HOME page */
body.home {
    justify-content: center;
}

body:before{
    display: block;
    content:" ";
    height:5px;
    position: absolute;
    top:0;
    width: 100%;
    z-index: 0;
    background: var(--z-theme-rainbow);
}

body{
    min-height: 95%;
}
body.home .footer-divider {
    display: none;
}

/* MEDIA QUERIES */
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 479px){
    :root {
        --z-max-content-width: 90%;
        --z-min-content-width: 90%;
    }
    body.home footer.main {
        display: none;
    }
    body{
        --line-height: 1.5;
    }
}

/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 480px) and (max-width: 767px){
    :root {
        --z-max-content-width: 90%;
        --z-min-content-width: 90%;
    }
    body.home footer.main {
        display: none;
    }

    body{
        --line-height: 1.5;
    }
}

/* Tablets (portrait) ----------- */
@media only screen and (min-width: 768px) and (max-width: 880px){
    :root {
        --z-max-content-width: 90%;
        --z-min-content-width: 90%;
    }
    body.home header.main {
        margin-top: 0;
    }
    body.home footer.main {
        position: absolute;
        bottom: 10px;
        margin-bottom: 0;
    }
}

/* Tablet (landscape) and Desktop ----------- */
@media only screen and (min-width: 881px){
    :root {
        --z-max-content-width: 800px;
        --z-min-content-width: 800px;
    }
    body.home .footer-divider {
        display: none;
    }
    body.home header.main {
        margin-top: 0;
    }
    body.home footer.main {
        position: absolute;
        bottom: 10px;
        margin-bottom: 0;
    }
}


/* LINKS */
a {
    text-decoration-line: none;
    color: var(--z-theme-accent);
    font-weight: 500;
    background: linear-gradient(to right,transparent,transparent),var(--z-theme-rainbow);
    background-size: 100% 1px,0 1px;
    background-position: 100% 100%,0 100%;
    background-repeat: no-repeat;
}

a:hover {
    text-decoration-line: none;
    position: relative;
    background-size: 0 1px,100% 1px;
    transition: 0.1s all ease-in-out;
}
a.hidden-link {
    color: inherit;
    text-decoration-line: none;
    background: transparent;
    background-size: 100% 1px,0 1px;
    background-position: 100% 100%,0 100%;
    background-repeat: no-repeat;
}
/*a.hidden-link:hover:after {*/
/*    display: none;*/
/*}*/

/* HEADER */
header.main{
    --height: 150px;
    display:flex;
    justify-content: center;
    align-items: center;
    gap:20px;
    margin-top:30px;
    width: var(--z-max-content-width);
}

header.main img.avatar{
    height: var(--height);
    width: var(--height);
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
}
header.main&gt;section.name{
    text-align: right;
    font-family: 'Chakra Petch Light Regular', sans-serif;
}
header.main&gt;section.name h1{
    font-family: 'Chakra Petch Regular', sans-serif;
    font-weight: normal;
}
header.main&gt;menu{
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: var(--height);
    font-family: 'Chakra Petch Light Regular', sans-serif;
    --line-height: 1.1;
    line-height: var(--line-height);
}


@media only screen and (max-width: 767px){
    header.main{
        flex-direction: column;
    }
    header.main&gt;menu{
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        height: auto;
        gap: 20px;
        padding-left: 10px;
        padding-right: 10px;
        font-size: 2rem;
    }
    header.main&gt;menu{
        width:60%;
        order:3;
        flex-direction: column;
        align-content: center;
    }
    header.main&gt;section.name:after{
        display: block;
        content: " ";
        background: var(--z-theme-rainbow);
        height:1px;
    }
    header.main&gt;section.name{
        width: 100%;
        text-align: center;
        border-bottom: 1px solid transparent;
    }
    header.main .avatar{
        order:1;
    }
    header.main .name{
        order:2;
    }
}



/* CONTENT */
article {
    max-width: var(--z-max-content-width);
    min-width: var(--z-min-content-width);
    text-align: justify;
}

article a{
    text-align: left;
    text-wrap: stable;
}

article ul{
    list-style-position: outside;
}

article h1, .list h1{
    font-size: 2rem;
    --line-height: 1.1;
    line-height: var(--line-height);
    text-align: left;
}

article h2, .list h2{
    --line-height: 1.1;
    line-height: var(--line-height);
    font-size: 1.8rem;
    text-align: left;
}
article h3, .list h3{
    --line-height: 1.1;
    line-height: var(--line-height);
    font-size: 1.6rem;
    text-align: left;
}
article h4, .list h4{
    --line-height: 1.1;
    line-height: var(--line-height);
    font-size: 1.4rem;
    text-align: left;
}
article h5, .list h5{
    --line-height: 1.1;
    line-height: var(--line-height);
    font-size: 1.2rem;
    text-align: left;
}

article header h1&gt;a{
    color:var(--z-theme-color);
}

article h1, article h2, article h3, article h4, article h5, article h6{
    font-family: 'Chakra Petch Light Regular', sans-serif;
}
article h1&gt;a, article h2&gt;a, article h3&gt;a, article h4&gt;a, article h5&gt;a, article h6&gt;a{
    font-family: 'Chakra Petch Light Regular', sans-serif;
    color: var(--z-theme-color);
    font-weight: inherit;
}


/* LIST */

ul.list {
    max-width: var(--z-max-content-width);
    min-width: var(--z-min-content-width);
    text-align: justify;
    list-style-type: none;
    padding: 0;
    margin: 0;
}
ul.list li{
}
ul.list li h2.list-title{
    font-family: 'Chakra Petch Light Regular', sans-serif;
    font-size: 2rem;
}
ul.list li h2.list-title a{
    font-family: 'Chakra Petch Light Regular', sans-serif;
    /*font-size: 1.13em;*/
}


/* FOOTER */
footer.main{
    max-width: var(--z-max-content-width);
    min-width: var(--z-min-content-width);
    text-align: center;
    margin-bottom: 20px;
    margin-top:20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap:10px;
}

.footer-divider{
    content: ' ';
    max-width: calc(var(--z-max-content-width) /3);
    min-width: calc(var(--z-min-content-width) /3);
    background: var(--z-theme-rainbow);
    height:1px;
    margin-top:20px;
}
footer.main menu.footer {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: inline;
    /*justify-content: center;*/
}
footer.main menu.footer li{
    display: inline;
}
footer.main menu.footer li:not(:first-child):before{
    content: " - ";
    margin-right: 5px;
    margin-left: 5px;
}

footer a{
    font-family: 'Chakra Petch Light Regular', sans-serif;
}

footer ul.i18n{
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    gap:10px;
}
footer ul.i18n:before{
    content: " | ";
}

/* BLOCKS */

blockquote {
    padding: 10px;
    margin:0;
    margin-top: 10px;
    margin-bottom: 10px;
    border-left: 5px solid var(--z-theme-accent);
    background-color: var(--z-theme-background-accent);
    font-family: 'Chakra Petch Regular', sans-serif;
}

blockquote p{
    margin:5px;
}


/* SHORTCODES - PHOTO GALERY */

.photo-gallery{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    --img-height: 200px;
}
.photo-gallery.small{
    --img-height: 75px;
}
.photo-gallery figure{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    margin: 10px;
}
.photo-gallery figure figcaption{
    max-width: var(--img-height);
}
.photo-gallery figure img{
    max-height: var(--img-height);
}

.photo-gallery figure.monochrome img {
    filter: grayscale(100%);
}
.z-theme-dark .photo-gallery figure.invertible img {
    filter:grayscale(100%) invert(100%);
}

.z-theme-dark .photo-gallery figure.brightenable img {
    filter:grayscale(100%) brightness(200%);
}

/* SHORTCODES - illustration  */

.illustration {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.illustration&gt;a{
    display: flex;
    justify-content: center;
}

.illustration img {
    max-width: 100%;

}

.illustration  figcaption {
    width: 100%;
    text-align: center;
    font-size: 0.8em;
}


/* SHORTCODE MEDIA PLAYER */


.media-player{
    width: 100%;
    margin-top: 30px;
    margin-bottom: 40px;
}

.media-player audio{
    width: 90%;
    margin-left: 5%;
    border-radius: 5px;
    background: var(--z-theme-rainbow);
}
.media-player p{
    width: 90%;
    margin-left: 5%;
    margin-top: 2px;
    text-align: center;
}


/* LIST */

/* We remove the margin bottom on H1 with a subtitle beneath it*/
.list h2:has(+ .list-sub-title){
    margin-bottom: 0;
}

section.list-sub-title {
    align-content: baseline;
    font-family: 'Chakra Petch Regular', sans-serif;
    font-size: 0.9em;
    text-align: left;
}

section.list-sub-title .dates,section.list-sub-title time  {
    text-wrap: nowrap;
    display: inline;
}

section.list-sub-title .divider-v {
    margin-left: 5px;
    margin-right: 5px;
}
section.list-sub-title .divider-v:last-child{
    display: none;
}
.list p:has(+ .more){
    margin-bottom: 0;
}
.list .more{
    font-family: 'Chakra Petch Light Regular', sans-serif;
    font-size: 0.9em;
}

.divider{
    content: ' ';
    max-width: calc(var(--z-max-content-width) /3);
    min-width: calc(var(--z-min-content-width) /3);
    background: var(--z-theme-accent);
    height:1px;
    margin-top:20px;
}
.divider.rainbow{
    background: var(--z-theme-rainbow);
}

pre:has(&gt;code){
    max-width: 100%;
    overflow: auto;
    padding:10px;
    background: var(--z-theme-background-accent);
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-left: 0.5rem solid var(--z-theme-accent);
}

code {
    max-width: 100%;
    background-color: transparent;
}</pre></body></html>