h1 {
    color: #463f3a;
}

h2 {
    font-size: 1.6vw;
}

#titleMobile {
    display: none;
}

.project {
    overflow: auto;
    white-space: nowrap;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}


img {
    height: 256px;
    width: auto;
}


.imgAccueil {
    width: 100%;
    height: auto;
    margin-top: 5px;
    opacity: 1;
    display: block;
    transition: .5s ease;
    backface-visibility: hidden;
}


.middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%)
}

.container:hover .imgAccueil {
    opacity: 0.5;
}

.container:hover .middle {
    opacity: 1;
}

.text {
    padding: 16px 32px;
    font-size: 1.3vw;
    background-color: #463f3a;
    color: #EDEDE9;
    text-decoration: none;
    text-align: center;
}

.container {
    position: relative;
    width: 100%;
}

#aText {
    color: #EDEDE9;
    text-decoration: none;
    text-align: center;
}

#enoraPicture {
    height: 13vw;
}

@media screen and (max-width: 1000px) {
    img {
        height: 200px;
        width: auto;
    }

    #titlePC {
        display: none;
    }

    #titleMobile {
        display: block;
        text-align: center;
    }

    .middle {
        display: none;
    }

}