/*contenue*/

main{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.section{
    margin: 40px;
}
.section-main-img{
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: blur(0.7px);
}
#row{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.section h1{
    margin-top: 0;
    color: #0cc753;
    font-size: 22px;
    margin-bottom: 50px;
    text-shadow: rgba(0, 0, 0, 0) 1px 1px;
}
section .content{
    align-items: flex-start;
    justify-content: flex-start;
}
.content{
    margin-top: 20px;
    margin-left: 20px;
    width: 70%;
    background-color: #ffffff;
    border-radius: 10px;
    text-align: justify;
    /*-webkit-box-shadow: 0px 1px 15px 1px rgba(0, 0, 0, 0.2); 
    box-shadow: 0px 1px 15px 1px rgba(0, 0, 0, 0.2);*/
}
.text-welcome{
    margin: 30px;
    margin-left: 20px0;
    font-size: 18px;
}

.link{
    color: #068b39;
}
.link:hover{
    color: #0cc753;
}




/* media query for mobile*/

@media only screen and (max-width: 1100px) {
    .bloc-preview{
        display: none;
    }
}

@media only screen and (max-width: 900px) {

    .text-welcome{
        margin: 20px;
        margin-left: 20px;
        font-size: 16px;
    }

    .section h1{
        margin-bottom: 10px;
    }
    .section-main-img img{
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
        margin-top: 0px;
        width: 100%;
        height: 20%;
        opacity: 0.8;
    }

    .content{
        margin-left: 0px;
        width: 90%;
        border-bottom: solid 4px #BFF032;
        border-left: solid 4px #BFF032;
        border: none;
        -webkit-box-shadow: none; 
        box-shadow: none;
    }
}

@media only screen and (max-width: 550px) {

    .section{
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
        text-align: start;
    }
}

@media only screen and (max-width: 375px ) {

}