<div class="out">
<div class="in"></div>
</div>
<style>
body {
background: #FADE8B;
display: grid;
place-content: center;
height: 100%;
width: 100%;
margin: 0;
}
.out {
background: #61A74E;
width: 12.5rem;
height: 12.5rem;
display: grid;
place-content: end;
}
.in {
border: 1px solid red;
border-width: 3.15rem;
border-color: #3F7331 #FADE8B #FADE8B #3F7331 ;
}
</style>