<div class="con con1">
<div class="line"></div>
<div class="line"></div>
</div>
<div class="con">
<div class="line"></div>
<div class="line"></div>
</div>
<style>
body {
background: #E25C57;
display: flex;
height: 100%;
margin: 0;
}
.con{
background: #F4DA64;
width: 50%;
height: 8.11rem;
display: flex;
flex-direction: column;
justify-content: center;
gap: 1.85rem;
}
.con1 {align-self: end}
.line {
background: #E25C57;
width: 100%;
height: 1.25rem;
}
</style>