*, *:before, *:after {
    box-sizing: border-box;
}

:host {
    font-family: 'Open Sans', monospace;
    display: inline-block;
    width: 550px;
    height: 300px;
    background-color: black;
    background-image: url(https://picsum.photos/seed/8/550/300);
    background-size: contain;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
}

h1 {
    color: #e2e2e2;
    text-align: center;
    margin: 230px 0 0 0;
    position: relative;
    text-shadow: 1px 1px 3px black;
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 5px black;
}

img {
    position: absolute;
    left: 176px;
    top: 0px;
    width: 196px;
    height: 161px;
    transform: perspective(1350px) rotate3d(1, 0, 0, -45deg);
}
