body{
margin:0;
background:#800020;
text-align:right;
overflow-x:hidden;
}

/* image wrapper */
.img{
float:right;
position:relative;
display:inline-block;
padding-bottom:20px;
margin-top:25px;
max-width:90vw;
}

/* image itself */
.img img{
display:block;
max-width:100%;
height:auto;
margin-top:15px
}

/* thin line below image */
.topline{
position:absolute;
left:0;
top:100%;
width:100%;
height:1px;
background:white;
}

/* vertical line */
.vertline{
position:absolute;
left:50%;
transform:translateX(-50%);
top:100%;
width:1px;
height:175px;
background:white;
}

/* thick bottom bar */
.bottomline{
position:absolute;
right:0%;
transform:translateX(-0%);
top:calc(100% + 140px);
width:100vw;
max-width:100vw;
height:50px;
background:white;
}

@media (max-width: 900px){

.img{
float:none;
margin-top:10px;
}

.vertline{
height:177px;
}

.bottomline{
top:calc(100% + 177px);
height:30px;
}

}
