html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}


.watermarked{
    position: relative;
    display: inline-block;
}

.watermarked::after{
    content:"";
    position:absolute;

    bottom:20px;
    right:20px;

    width:120px;
    height:120px;

    background-image:url('/wp-content/themes/eric-photographe/assets/watermark.png');
    background-size:contain;
    background-repeat:no-repeat;

    opacity:0.7;
    pointer-events:none;
}