@charset "utf-8";
/* RÉINITIALISATION */
* {
    margin: 0;
    padding: 0;
    box-sizing:border-box;
}

*::selection {
    color: #fff;
    background: #000;
}

nav{
    display: flex;
    align-items: center;
    color: #000 !important;
    font-size: 24px;
    font-family: "Helvetica Neue";
    font-style: normal;
    font-weight: bold;
}

.nav-lien {
    text-decoration: none;
    color: #000 !important;
}

.nav-lien:hover {
    color: #3b69ff !important;
}

.nav-accueil{
    padding-right: 0.5rem;
}

.logo-entete{
    height: 2.5rem;
    width: 2.5rem;
    display: flex;
    margin: auto 0 auto auto;
}

.page{
    padding: 15px 15px 70px 10px;
    /*background: #ffdd00;*/
    background: #fff;
}

.titrePrincipal{
    color: #000;
    font-size: 50px;
    font-family: "Helvetica Neue";
    font-style: normal;
    font-weight: bold;
    line-height: 90%;
    padding-top: 2rem;
}

.profession{
    color: #000;
    font-size: 50px;
    font-family: "Helvetica Neue";
    font-style: normal;
    font-weight: bold;
    line-height: 90%;
    padding-top: 40px;
}

.sous-titre-entete{
    color: #000;
    font-size: 24px;
    font-family: "Helvetica Neue";
    font-style: normal;
    font-weight: bold;
    line-height: 120%;
    padding-top: 50px;

}

.fond{
    width: 70vw;
    height: 70vw;
    position: absolute;
    z-index: -1000;
    right: 1rem;
    margin: 2rem auto;
    border-radius: 1000px;
}

.rectangle-entete{
    background: #000;
    width: 20vw;
    height: 8px;
    margin-top: 4rem;

}

.dessins {
    padding-top: 4rem;
    width: 100% !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    grid-template-rows: auto;
}

.dessins img {
    width: 100%;
    display: flex;
    align-self: center;
}

@media (min-width: 801px) {
    .page{
        padding: 1rem 1rem 5rem 1rem;
    }

    .titrePrincipal{
        font-size: 110px;
    }

    .profession{
        font-size: 110px;
        padding-top: 3rem;
    }

    .sous-titre-entete{
        font-size: 24px;
        padding-top: 4rem;
        width: 50vw;
    }

    .fond{
        width: 60vw;
        height: 60vw;
    }

    .dessins {
        padding-top: 4rem;
        width: 100% !important;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 1.5rem;
        grid-template-rows: auto;
    }

    .dessins img {
        width: 100%;
        display: flex;
        align-self: center;
    }
}