*{
    margin: 0;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Montserrat';
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
}

a{
    text-decoration: none;
}

footer{
    display: flex;
    flex-direction: row;
    width: 100vw;
    background-color: #0B181F;
    justify-content: space-evenly;
    padding: 30px 0;
    box-sizing: border-box;
    align-items: center;
    color: #E7F0F4;
}

footer img{
    width: 20px;
}

footer .arrow{
    transform: rotate(180deg);
}



#header{
    width: 100vw;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    position: fixed;
    background-color:#0B181F;
}

#header p{
    color: #E7F0F4;
    font-family: 'Shippori Antique B1', sans-serif;
}

#header img{
    height: 20px;
}

#intro{
    width: 80vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 180px;
}

#intro img{
    width: 40%;
    max-height: 80px;
}

#intro p{
    width: 40%;
    font-family: 'Montserrat';
}

#intro .p-sombre{
    color: #E7F0F4;
}

@media screen and (max-width:1000px){
    #intro{
        flex-direction: column;
    }

    #intro img{
        width: 50%;
        margin-bottom:50px;
    }

    #intro p{
        width: 100%;
    }
}

#images{
    width: 100vw;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#images img{
    width: 80vw;
    max-width: 1200px;
    margin-bottom: 50px;
}

#images .largeur-full{
    width: 100vw;
    max-width: none;
}

#images .largeur-petit{
    width: 40vw;
}

#images .image-legende{
    width: 50vw;
    display: flex;
    flex-direction: column;
}

#images .image-legende .ligne{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

#images .ligne img{
    width: 30%;
    margin-bottom: 0px;
}

#images .ligne span{
    display: flex;
    flex-direction: column;
    width: 60%;
    margin-left: 50px;
}

#images .ligne .titre{
    font-family: 'Shippori Antique B1';
    color: #E02B33;
    margin-bottom: 5px;
    font-size:25px;
}

@media screen and (max-width:1000px){
    #images .image-legende .ligne{
        flex-direction: column;
    }

    #images .image-legende .ligne span{
        width: 100%;
    }

    #images .ligne img{
        width: 80%;
        margin-bottom: 20px;
    }

    #image .largeur-petit{
        width: 80%;
    }
}