body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

#bannerContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.banner {
  width: 468px; /* Set fixed width for banners */
  height: 60px; /* Set fixed height for banners */
  background-color: #f0f0f0; /* Placeholder for banner */
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 468px) {
  .banner {
    width: 100%;
  }
}
