@import url('https://fonts.googleapis.com/css2?family=Shadows+Into+Light+Two&family=Titillium+Web:ital,wght@0,300;0,400;0,600;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shadows+Into+Light+Two&display=swap');

*{
    font-family: 'Titillium Web', sans-serif;
}

:root{
    --pink: #f5127c;
    --white: rgb(255, 255, 255);
    --green: rgba(192, 222, 192,.8);
    --darkGreen: rgb(0, 52, 0);
    --red: rgba(255, 165, 165, 0.8);
    --darkRed: rgb(112, 0, 0);
    --grey: rgb(112, 112, 112);
    --blue: rgb(0,0,255);
}

body{
    width: 100vw;
    overflow-x: hidden;
}

.h100{
    height: 100%;
}

.container{
    /*display: flex;*/
    margin: 0 10%;
}

.flex{
    display: flex;
}

.flexRow{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.flexCol{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.flexStart{
    display: flex;
    align-items: flex-start;
}

.alignCenter{
    align-items: center;
}

.justifyCenter{
    justify-content: center;
}

.alignRight{
    justify-content: right;
}

.spaceBetween{
    justify-content: space-between;
}

.spaceAround{
    justify-content: space-around;
}

.wrap{
    flex-wrap: wrap;
}

.noWrap{
    flex-wrap: nowrap;
}

.relative{
    position: relative;
}

.absolute{
    position: absolute;
}

.fullWidth{
    width: 100%;
}

.fullHeight{
    height: 100%;
}

.textCenter{
    text-align: center;
}

h2{
    font-size: 37px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 12px;
    line-height: 74px;
}

h3{
    font-size: 30px;
    font-weight: 300;
    margin-top: 25px;
    margin-bottom: 10px;
    line-height: 50px;
}

.outils h2{
    text-align: left;
}

h4{
    font-size: 30px;
    line-height: 52px;
}

.italique{
    font-style: italic;
}

.bold{
    font-weight: bold;
}

.link{
    text-decoration: underline;
    font-weight: bold;
}

.button{
    width: 364px;
    height: 55px;
    border: 3px solid var(--pink);
    border-radius: 15px;
    transition: 0.4s;
    cursor: pointer;
}

.button:hover{
    color: lightgray;
    border-color: lightgray;
    background-color: var(--pink);
}

.button:hover span{
    transition: 0.5s;
    color: var(--white);
}

.mb{
    margin-bottom: 60px;
}

.overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(120,115,164,0.54);
}

/*------------------- notification -----------------------*/

.zonedenotification>.alert-success{
    border: 2px solid var(--green);
}

.alert{
    position: fixed;
    top: 90px;
    right: 20px;
    font-size: 15px;
    line-height: 25px;
    border-radius: 5px;
    z-index: 5000;
    padding: 30px 20px;
    font-weight: bold;
    max-width: 250px;
}

.alert-success{
    background-color: var(--green);
    color: var(--darkGreen);
    border: 2px solid var(--darkGreen);
}

.alert-danger{
    background-color: var(--red);
    color: var(--darkRed);
    border: 2px solid var(--darkRed);
}

@media only screen and (max-device-width : 599px){

    .desktop{
        display: none;
    }

    .deskBlock{
        display: none;
    }

    .mobile{
        display: flex;
    }

    .mobBlock{
        display: block;
    }

    h2{
        font-size: 20px;
        font-weight: 600;
        margin-top: 30px;
        line-height: 30px;
        width: 90vw;
        margin-left: 5vw;
    }

    h3, .outils h2, .perso .text h2{
        margin-top: 0;
        font-size: 25px;
        line-height: 35px;
        font-weight: 400;
    }

    h4{
        font-size: 20px;
        line-height: 35px;
    }

    .button{
        width: fit-content;
        height: 35px;
        border: 2px solid var(--pink);
        border-radius: 10px;
        transition: 0.4s;
        cursor: pointer;
        padding: 0 15px;
    }

    .mb{
        margin-bottom: 30px;
    }

    .container{
        margin: 0 5% 30px;
    }

}

@media only screen and (min-device-width : 600px){

    .desktop{
        display: flex;
    }

    .deskBlock{
        display: block;
    }
    
    .mobile{
        display: none;
    }

    .mobBlock{
        display: none;
    }

}