body {
  margin: 0;
  font-family: sans-serif;
}

.flexbox-container {
  display: flex;
  justify-content: center; /* Centers columns as a group */
  align-items: flex-start; /* Aligns columns to the top */
  gap: 40px;               /* Space between columns */
  padding: 50px;
}

.column {
  flex: 1;                 /* Allows columns to size evenly */
  max-width: 400px;        /* Optional: limit width of each column */
}

.column img {
  max-width: 100%;
  height: auto;
}