Is this question a bit unusual? Here's the code snippet:
body{
background-color: rgba(38, 38, 38, 1);
}
.inside-box {
border: 15px solid rgba(38, 38, 38, 1);
height: 95vh;
border-radius: 25px;
background: rgba(26, 26, 26, 1);
}
.outside-box {
background: rgba(38, 38, 38, 1);
}
.flex-container-top {
height: 5vh;
background-color: red;
}
<div class="flex-container-top">
</div>
<div class="outside-box">
<div class="inside-box"></div>
</div>
I'm not sure if I formatted the code correctly, but here is what I have:
Don't get too caught up in dimensions, I just need to know how to layer elements.