body {
   font-size: 40px;
   background: black;
   margin: 20px;
   color: #fff;
   font-family: sans-serif;
}

* {
   box-sizing: border-box;
}

.flexbox {
   display: flex;
   border: 20px solid#edddbd;
   height: 50vh;
   box-shadow: 0 0 3.75rem -0.625rem #00000066;
}

.flexbox_item {
   border: 20px solid #b9a074;
}
.flexbox_item:nth-child(2) .flexbox_content {
   padding: 60px 40px;
}

.flexbox_content {
   border: none;
   padding: 40px;
   background: linear-gradient(#6f4916, #7e5926 );
}

/* ====================================================================================== */

.flexbox {
   display: flex;
   /* justify-content: center; */
   flex-wrap: wrap;
   /* align-items: centr; */

}