/* Couleurs du titre */
#header-title {
    background: linear-gradient(to bottom,rgb(245,245,220),rgb(245,245,220),rgb(248, 232, 0));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} 

/* Corps de la page */
#myBody {
    background-image:linear-gradient(to bottom right, rgba(221, 208, 31, 0.75), rgba(150, 216, 255, 0.75), rgba(56, 207, 56, 0.75));
}

/* Liste des expériences professionnelles */
.pro {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 9% 0 2% 0;
    width: 100%;
}

/* Chaque expérience professionnelle */
.pro a {
    text-decoration: none;
    color: black;
    width: 25%;
    transition: 0.5s;
}

/* Survol d'une expérience professionnelle */
.pro a:hover {
    width: 28%;
}

/* Contenu d'une expérience professionnelle */
.pro .pro1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 2% 1% 2% 1%;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid black;
    font-family: cursive;
}

/* Image d'une expérience professionnelle */
.pro li img {
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 20%;
}

/* Titre d'une expérience professionnelle */
.pro .pro1 h3 {
    text-align: center;
    font-size: xx-large;
    margin-bottom: 10%;
}

@media only screen and (max-width:768px)  {

    .pro {
        flex-direction: column;
        align-items: center;
    }

    .pro a {
        width: 70%;
        margin-bottom: 5%;
    }

    .pro a:hover {
        width: 75%;
    }

}

@media only screen and (max-width:500px)  {

    .pro .pro1 h3 {
        font-size: x-large;
    }

    .pro ul {
        font-size: small;
    }

}

@media only screen and (max-width:300px)  {

    .pro a {
        width: 80%;
    }

    .pro a:hover {
        width: 85%;
    }

    .pro .pro1 h3 {
        font-size: larger;
    }

    .pro ul {
        font-size: x-small;
    }

}