body { background: violet; 
font-family: Verdana;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;      
  margin-bottom: 20px;
}

[class^="flexed-item-"] {
  border: 5px solid #100;
  padding: 20px;
  box-sizing: border-box;
}


.flexed-item-50  { flex: 0 0 calc(50% - 10px); 
height: 500px; 
background-image: url(yogie7.jpg); 
background-size: 100px;
background-position: center; /* Keeps the middle of the photo visible */
background-repeat: repeat;}