@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
*{
    /*Abonnez vous Merci*/
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.text {
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.text h1 {
    position: absolute;
    color: #fff;
    z-index: 1;
    font-weight: bold;
    font-size: 35px;
    -webkit-text-stroke: 1px #000;
}
.text img {
 width: 100%;
 height: 100%;
 z-index:-1;
}
canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 2;
    mix-blend-mode: screen;

}