.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 800px;

}

.title {
    padding: 10px;
    font-size: 60px;
}

.line_1 {
    display: flex;
    justify-content: center;
    margin: 10px;

    @media screen and (max-width: 1000px) {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        margin: 0px;
    }
}

.atelier {
    width: 20%;

    @media screen and (max-width: 1000px) {
        width: 50%;
    }

}

.subtitle {
    padding-left: 50px;
    font-size: 40px;

    @media screen and (max-width: 1000px) {
        padding-left: 300px;

    }

}


.line_2 {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-top: 50px;
    font-size: 50px;
}

.line_3 {
    display: flex;
    justify-content: space-evenly;
    margin: 10px;
    width: 100%;


    @media screen and (max-width: 1000px) {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

.mini {
    width: 15%;

    @media screen and (max-width: 1000px) {
        width: 50%;
        margin: 15px;

    }

}

body {
    background-color: gainsboro;
}

img {
    max-width: 100%;
    max-height: 100%;
}