main > div {
    display: flex;
    flex-direction: row; 
    width: 100%;
    height: 90vh;
    z-index:1;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%);
}
main a {
    z-index: 5;
    height:auto;
}

/* Animation survol */

main > div  div:hover > p{
    bottom: 15%;
}

main > div  div:hover{
    cursor: pointer;
    mix-blend-mode: screen;
}

main>  div  div {
    width: 50%;  /* 50% de la largeur pour chaque div */
    font-size: 30px;
    transition: all ease 0.2s;
}


main div div p{
    position: absolute;
    bottom:10%;
    color:white;
    font-weight: bold;
    z-index: 1;
    transition: all ease 0.2s;
}

main >div > div:first-child p{
left: 25%;
transform: translate(-50%, 0);
}

main> div > div:last-child p{
right: 25%;
transform: translate(50%, 0);
}


main img{
    position: relative;
	opacity: 100%;
	object-fit: cover;
	width: 100%;
	height: 90vh;
    z-index: -1;
}

/* Recadrage de l'image */
main div img:last-child{
    object-position: 50% 20%;
}
