@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
body{
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    font-family: 'Bebas Neue', sans-serif;

}
.box{
    height: 500px;
    width: 400px;
    position: relative;
}
.box .left,
.box .right{
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
	background-image: url('mydog.png');
    background-size:  100%;
    background-repeat: no-repeat;
    background-position: center;
}
.box .left{
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0% 100%);
}
.box .right .content{
    width: 50%;
}
.box .right{
    font-family: monospace;
    font-weight: 700;
    font-size: 50px;
    -webkit-background-clip: text;
    line-height: 3px;
	color: transparent;
    box-sizing: border-box;
    display: flex;
    justify-content: right;
    align-items: center;
    line-height: 35px;
    text-transform: uppercase;
}