/* ========================================
   BASE
   ======================================== */
body {
    font-family: "Red Hat Display", sans-serif;
    margin: 0;
    background-color: var(--color-1);
    image-rendering: optimizeSpeed;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100svh;
    /* padding: 15vmin; */
}

#logo-ml {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: fixed;
    right: 0;
    left: 50%;
    background-color: var(--color-1);
    z-index: 100;
    /* background-color: red; */
}

#logo-ml img {
    /* background-color: yellow; */
    /* object-fit: contain; */
    width: 100%;
    padding: 10vmin;
}

#mentions-legales {
    margin-top: var(--header-height);
    background-color: var(--color-2);
    width: 100%;
    height: auto;
    text-align: left;
    color: var(--color-1);
    gap: 50px;
    display: flex;
    flex-direction: column;
    padding: 15vmin;
    overflow-y:scroll;
}

.legal-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

ul {
    padding:  0 15px;
    margin: 0;
}

section a {
    color: var(--color-1);
    text-decoration: underline;
}

@media (max-width:1000px) {
    body {
        display: flex;
        gap: 0;
        flex-direction: column-reverse;
            height: auto;

    }

    #mentions-legales {
        margin-top: 0;
        width: 100%;
        overflow: none;
    }

    #logo-ml {
        margin-top: var(--header-height);
        display: flex;
        align-items: center;
        justify-content: center;
        height: min-content;
        position: relative;
        right: 0;
        left: unset;
        /* background-color: red; */
    }

    #logo-ml img {
        /* background-color: yellow; */
        /* object-fit: contain; */
        width: 100%;
        padding: 15vmin;
    }
}