.Formation, .Transformation
{
    display: flex;
    flex-direction: column;
    position: relative;
    width: 90%;
    align-items: center;
    height: 70vh;

}

.Formation::before
{
    content: "";
    background-image: url('http://www.conserverie.ftalps.fr/wp-content/uploads/2023/04/fruitLegume1.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size:cover;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    opacity: 0.5;
}

.Transformation::before
{
    content: "";
    background-image: url('http://www.conserverie.ftalps.fr/wp-content/uploads/2023/04/conserve.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size:cover;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    opacity: 0.5;
}

.titre
{
    color : #78cc29;
    font-family: 'balooregular';
    font-size: 36px;
    text-align: center;
    font-weight: 600;
    width: 100%;
}

.explication
{
    color: black;
    font-family: 'balooregular';
    font-size: 43px;
    text-align: center;
    font-weight: 500;
    position: absolute;
    top: 185px;


}

.LandingButton
{
    border-radius: 35px;
    border-color: #FFD500;
    background-color: #FFD500;
    color: black;
    font-family: 'balooregular';
    font-size: 25px;
    width: 30%;
    position: relative;
    top: 62vh;
}

.LandingButton:hover
{
    border-radius: 35px;
    border-color: #78CC29;
    background-color: #78CC29;
    color: white;
    font-family: 'balooregular';
    font-size: 35px;
    width: 40%;
    position: relative;
    top: 62vh;
}


.divGlobale
{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.divIntermed
{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5%;
}

@media screen and (max-width: 720px)
{
    .divGlobale
    {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .divIntermed
    {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 25%;
    }

    .Formation, .Transformation
    {
        display: flex;
        flex-direction: column;
        position: relative;
        width: 90%;
        align-items: center;
        height: 100vh;

    }

    .explication
    {
        color: black;
        font-family: 'balooregular';
        font-size: 35px;
        text-align: center;
        font-weight: 500;
        position: absolute;
        top: 0;

    }

    .LandingButton
    {
        border-radius: 35px;
        border-color: #FFD500;
        background-color: #FFD500;
        color: black;
        font-family: 'balooregular';
        font-size: 25px;
        width: 90%;
        position: relative;
        top: 90vh;
    }
    .LandingButton:hover
    {
        border-radius: 35px;
        border-color: #78CC29;
        background-color: #78CC29;
        color: white;
        font-family: 'balooregular';
        font-size: 35px;
        width: 95%;
        position: relative;
        top: 90vh;
    }

}