Struggling to align an image to the right of the content area, inspired by this Dribble shot.
Check out the inspiration here
This is what I've come up with so far:
Link to my progress on CodePen
.content {
position: relative;
}
.bg-image {
position: relative;
top: 350px;
left: 450px;
height: 350px;
z-index: 2;
}
However, floating the image or using top and left properties seems to distort the layout. Any suggestions?