*{
    font-family: "Alegreya Sans", sans-serif;
    color: #707070;
}
.header{
    display: none;
}

h1 {
    font-size: 2rem;
    
}
.d-flex{
    display: flex;  
    align-items: center;
    flex-wrap: wrap;
}
main{
    max-width: 1280px;
    margin: 50px auto;
    text-align: center;
}

.title{
    display: flex;
    justify-content: center;
}
.intro{
font-size: 1.4rem;
font-weight: 500;
margin-bottom: 75px;
}

.bloc-illu{
    position: relative;
    height: 150px;
}
.bloc-illu img{
    position: absolute;
    top: -150px;
    left: -100px;
    width: 500px;

}

.work-in-progress{
    font-weight: 800;
    font-size: 3.5rem;
    margin-bottom: 15px;
    width: 100%;
}
.work-in-progress__sub{
    font-weight: 500;
    font-size: 1.4rem;
    display: block;
    width: 100%;

}

.wait{
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 25px;
}

ul{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}
li:not(:last-child){
    margin-right: 30px;
}
li a svg path{
    transition: all .2s;
}
li a:hover svg path  {
    fill: #a45fff;
}
.bottom{
    line-height: 1.4rem;
    font-size: 1.3rem;
}
strong{
    font-weight: 700;
}

.mail{
    font-size: 1.4rem;
    margin-top: 24px;
    display: flex;
    justify-content: center;
    width: fit-content;
    margin: 24px auto ;
}

@media screen and (max-width:1130px){
    .bloc-illu{
        height: auto;
    }
        .bloc-illu img{
            position: static;
        }
}
@media screen and (max-width:700px){
    main {
        max-width: 100%;
        padding:  15px;
        margin: 0 auto;
    }
    .intro{
        margin-bottom: 0;
        font-size: 1.2rem;
    }
    .bloc-illu img{
        width: 200px;
    }
    .work-in-progress{
        font-size: 2.2rem;
        margin-bottom: 16px;
    }
    .work-in-progress__sub{
        font-size: 1.2rem;
    }
    .wait{
        font-size: 1.2rem;
    }
    ul{
        margin: 10px auto;
    }
    li a svg{
        width: 60px;
    }
}