* {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0;
  
}

body {
  font-family: Arial, sans-serif;
}

.container1 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0px;
  gap: 10px; /* Adds space between columns */
  width:83.5%;
}

.column {
  background-color: #F9F0DF;
  flex: 1;
  min-width: 250px; /* Ensures the columns do not get too small */
  padding: 0px; /* Padding inside the columns */
  text-align: center; /* Centers all text and content */
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column; /* Stacks columns on smaller screens */
  }
}