.outer {
font-family: "Open Sans", sans-serif;
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(
127deg,
rgba(3, 254, 127, 1) 0%,
rgba(3, 254, 127, 1) 50%,
rgba(229, 252, 240, 1) 50%,
rgba(229, 252, 240, 1) 100%
);
}
.outer .box {
width: 300px;
height: 450px;
margin: 0 80px;
background:url("https://source.unsplash.com/RVF0ngUujks/") center center
no-repeat;
background-size: cover;
position: relative;
box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.5);
}
.outer .box:before {
display: block;
content: "";
width: 300px;
height: 450px;
box-shadow: inset 0px 0px 0px 10px rgba(255, 255, 255, 1);
position: relative;
top: -30px;
right: -40px;
z-index: 2;
background: rgba(0, 0, 0, 0.1);
}
.outer .box .inner {
position: absolute;
bottom: 90px;
right: -95px;
z-index: 3;
color: #fff;
}
h3,
h4 {
text-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
letter-spacing: 2px;
line-height: 0.9;
position: relative;
text-transform: uppercase;
}
h3 {
font-size: 36px;
}
h4 {
font-size: 14px;
left: 25px;
}