/* ************IMAGE PRINCIPALE******************/
.imagePrincipale {
    padding-top: 10px;
    background-image: url(ip.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 799px;
}


h1 {
    font-family: 'Dancing Script', cursive;
    text-align: center;
    color: antiquewhite;
    font-size: 6em;
    margin-top: 100px;
    text-shadow: 1px 3px 2px black;
}
.premierTrait {
    height: 1px;
    width: 25%;
    margin: -3px auto;
    background-color: #fffae1;
    box-shadow: 1px 3px 2px black;
}
.premierTrait h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    color: antiquewhite;
    text-align: center;
    font-size: 3em;
    text-shadow: 1px 3px 2px black;
}

#zone {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 30px 30%;
    margin: 20px;
}
.imageZone h4 {
    font-family: 'Dancing Script', cursive;
    text-align: center;
    font-size: 1.8em;
    margin: -5px;
    font-weight: 300;
}
.imageZone img {
    height: 226px;
    width: 250px;
    max-width: 250px;
    float: left;
    background-repeat: no-repeat;
    border-radius: 10px;
    box-shadow: 5px 8px 5px 4px rgba(0, 0, 0, 0.5);
}
.imageZone img:hover {
    opacity: 0.5;
    transform: scale(1.05);
    transition: 0.8s ease-in-out;
}

.textIntro {
    margin: 10px;
}
.textIntro> h5 {
    padding-top: 40px;
    display: flex;
    align-items: flex-start;
    box-shadow: 5px 8px 5px 4px rgba(0, 0, 0, 0.5);
    border-radius: 3px;
    font-weight: bold;
}

@media screen and (max-width: 500px) {
    
    .imagePrincipale 
    {
        padding-top: 5px;
        height: 500px;
        width: 100%;
    }
    
    h1 {
        font-size: 3em;
        margin-top: 200px;
    }
    .premierTrait h3 {
        font-size: 2em;
    }

    .imageZone img
    {
        height: 150px;
        width: 180px;
    }
}

@media screen and (max-width: 350px) {
    .imageZone img
    {
        height: 75px;
        width: 100px;
    }
    .imageZone > h4
    {
        font-size: 1em;
    }
    .imageZone
    {
        margin-top: 20px;
    }
}