/* Format mobile*/
body {
    font-family: 'Century Gothic Paneuropean', sans-serif;
    font-size: 0.8125rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;

    .orangeWave_svg {
        margin: 2rem 0;
    }
}

button {
    color: unset;
    background-color: unset;
    padding: unset;
    border: unset;
}

h3 {
    font-family: Bebas Neue, sans-serif;
    color: var(--title-color);
    font-size: 1.125rem;
    margin: unset;
    text-align: start;
    margin-top : 2rem;
}

.homeTitle {
    margin-left: 2rem;
}

h1 {
    font-family: Bebas Neue, sans-serif;
    color: var(--contact-color);
    font-size: 1.125rem;
    margin: unset;
}

h2 {
    font-family: Bebas Neue, sans-serif;
    color: var(--button-active-color);
    font-size: 1rem;
    margin: unset;
}

p {
    margin: unset;
}

a {
    color: var(--title-color);
    text-decoration: underline;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 16px 0;
}

.publication {
    font-size: small!important;
    color: var(--button-active-color);
    text-align: end;
    margin-right: 1rem;
    align-self: flex-end;
}

/* Format tablette*/
@media (min-width: 550px) {
    body {
        font-size: 1.125rem;

        .orangeWave_svg {
            width: 100%;
        }
    }

    h3 {
        font-size: 1.5rem;
        color: var(--title-color);
        margin-block: 1rem;
    }

    h2 {
        font-size: 1.25rem;
    }
}

/* Format desktop*/
@media (min-width: 1024px) {
    body {
        font-size: 1.25rem;
    }
    h3 {
        font-size: 1.875rem;
        color: var(--title-color);
    }

    .homeTitle {
        margin-left: 9rem;
        margin-top: 4rem;
    }

    body a {
        color: black;
        text-decoration: none;
        transition: color 0.3s ease, text-decoration-color 0.3s ease;

        &:hover {
            color: var(--title-color);
            text-decoration: underline;
        }
    }

    .container {
        flex-direction: row;
    }

    footer a {
        color: white;
        text-decoration: none;

        &:hover {
            text-decoration: underline;
            color: var(--title-color);
        }
    }
}

@media (min-width: 2000px) {
    body {
        font-size: 1.375rem;
    }

    h3 {
        font-size: 2.25rem;
    }
}