* {margin: 0; padding: 0; }


.persons {
    display: flex;
    height: 100vh;
}

.person {
    width: 50vw;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .5s; /* Animation */
}

.person:hover a {
    transform: scale(1.2);

}

.om {
    background-image: url("../images/ophelie.webp");
}
.jlm{
    background-image: url("../images/jl.webp");
}
.mm{
    background-image: url("../images/mm.jpg");
}
.am{
    background-image: url("../images/am.jpg");
}
.my{
    background-image: url("../images/my.webp");
}

.am a {
    background-color: #ffffff;
}

@media (max-width: 1024px) {
    .persons {
        flex-wrap: wrap;
    }

    .person {
        width: 100%;
        padding: 3rem;
    }
}
