<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    /* --angle : -45deg; */
    --fond : rgb(39, 38, 38);
    --fond2 : rgb(47, 47, 47);
    --fond3 : rgb(63, 63, 63);
    --jaune : rgb(251, 240, 29);
    --jaune-hard: rgb(255, 249, 137);
    --blue : rgb(29, 110, 251);
    --top : 70%;
    --topv : 68vw;
    --shadow : rgba(39, 38, 38, 0.257);
    --rouge : rgb(255, 0, 81);
}

body {
    padding:0;
    margin: 0;
    width: 100vw !important;
    /* box-sizing: border-box; */
    font-family: 'Epilogue', sans-serif;
    /* background-color: var(--fond); */
    /* background-color: transparent; */
    background-color: var(--fond);
    color:white;
    /* scroll-behavior: smooth; */
    /* background-image: url('img/Untitled\ design\ \(1\).png');
    background-position:bottom;
    background-attachment: fixed !important;
    background-blend-mode:overlay; */
}


.french {
    display: none;
}
.english {
    display: block;
}


a {
    color: unset;
    text-decoration: none;
}
header {
    /* position: relative; */
    /* left:calc(100% - 4rem); */
    margin-top: 1rem;
    margin-right: 1rem;
    top: 0;
    font-size: .9rem;
    font-weight: 100;
    cursor: pointer;
    text-align: right;
}


h3 {
    margin-top: 0;
    font-size: 1rem;
    font-weight: 300;
}
h1 {
    margin-bottom: 0;
}

.fr {
    opacity: .5;
}

.cont {
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* background-color: red; */
    margin-top: 4rem;
}


.tete {
    
    width:100px;
    height: 100px;
    border-radius: 50%;
    
    overflow: hidden;
    position: relative;
}
.tete img {
    position: relative;
    width:108%;
    top:-30px;
    left: -8px;
}

.pac {
    width: 100px;
    height: 50px;
    position: absolute;
    top: 0px;
    background-color: var(--jaune);
    opacity: 1;
    transform-origin: 0 100%;
    rotate: -30deg;
    
}
.man {
    width: 100px;
    height: 50px;
    position: absolute;
    top: 50px;
    background-color: var(--jaune);
    opacity: 1;
    transform-origin: 0 0;
    rotate: 30deg;
   
}
.tete:hover .pac {
    animation: haut .3s ease-in-out alternate infinite;
}
.tete:hover .man {
    animation: bas .3s ease-in-out alternate infinite;
}

@keyframes haut {
    0% {
        rotate: 0deg;
    }
    /* 10% { rotate: -30deg;} */
    100% {  
        rotate: -40deg;
    }
}
@keyframes bas {
    0% {
        rotate: 0deg;
    }
    /* 10% { rotate: 30deg;} */
    100% {  
        rotate: 40deg;
    }
}

h4 {
    margin-top: 0;
    font-weight: 200;
    font-size: .85rem;
    line-height: 1.4rem;
    width: 96%;
    max-width: 580px;
    text-align: center;
}

.hide {
    display: none !important;
}

.contact {
    margin: 2rem;
    padding: .6rem 1rem;
    font-weight: 200;
    font-size: .8rem;
    text-align: center;
    background-color: var(--blue);
    border-radius: 4px;
}

.social {
    display: flex;
    gap: .7rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 70vw;
}
.social a {
    color: white;
    font-size: 2.2rem;
    line-height: 2.2rem;
    width: 2rem;
    text-align: center;
    background-color: var(--fond2);
    border: 3px solid var(--fond3);
    border-radius: 5px;
    padding: 1rem 1rem .5rem 1rem;
    position: relative;
}

.tooltiptext {
    visibility: hidden;
    width: auto;
    background-color: var(--fond3);
    color: #fff;
    text-align: center;
    font-size: .8rem;
    padding: 0px 12px;
    border-radius: 6px;
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
}
.social a:hover .tooltiptext {
    visibility: visible;
}


#mc_embed_shell {
    margin: 2rem auto;
}
#mc_embed_signup_scroll {
    background-color: var(--fond2);
    padding: .8rem 1.2rem;
    display: flex;
    flex-direction: row;
    border-radius: 4px;
}
#mce-EMAIL {
    background-color: var(--fond3);
    color: rgba(140, 140, 140, 0.777);
    text-emphasis: none;
    text-decoration: none;
    border: none;
    font-weight: 100;
    font-size: 1rem;
    padding: 1rem;
    max-width:50vw;
    width: 320px;
}
#mc-embedded-subscribe {
    padding: 1rem;
}

.content a:hover {
    transform: scale(1.01);
}

.etikette {
    max-width: 420px;
    display: grid;
    grid-template-columns: 80px 1fr 6rem;
    margin-block: 2rem;
    margin-inline: .8rem;
    background-color: var(--fond2);
}
.etikette .image {
    width:80px;
    height: 80px;
    background-color: var(--fond3);
    font-size: 74px;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
}
.etikette .image img{
    width:100%;
}
.etikette .detail {
    
    display: flex;
    height: 80px;
}
.etikette .detail p {
    margin: auto 8px;
    font-size: .8rem;
    font-weight: 200;
}
.etikette .cta {
    /* background-color: red; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.etikette .cta span {
    padding: .6rem 1rem;
    font-weight: 200;
    font-size: .8rem;
    text-align: center;
    background-color: var(--blue);
    border-radius: 4px;
}

</pre></body></html>