<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.header {
    background: linear-gradient(to right, rgb(221, 166, 115), rgb(224, 108, 0));
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    box-sizing: border-box;
}

.title {
    margin-left: calc(100% - 300px);
    font-size: 24px;
    font-weight: bold;
    color: black;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logo {
    height: 90px;
    margin-right: -25%;
}

.content {
    display: flex;
    justify-content: space-between;
    margin: 20px;
}

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

.image-column img {
    width: 200px;
    margin-bottom: 10px;
}

.tr {
    flex: 1;
    padding: 20px;
}

.tr-txt h1 {
    color: #333;
}

.tr-txt p {
    line-height: 1.6;
}

.tr-txt ul {
    list-style-type: disc;
    margin-left: 20px;
}

.ligne {
    margin-left: 10%;
}

.or {
    color: orange;
    font-weight: 800;
    font-size: 20px;
    text-align: center;
    display: block;
}

@media only screen and (max-width: 758px) {
    .image-column img {
        width: 150px;
    }

    .tr-txt h1 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 480px) {
    .image-column img {
        width: 100px;
    }

    .tr-txt h1 {
        font-size: 16px;
    }

    .tr-txt p {
        font-size: 14px;
    }
}



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