/* Reset some default styles in browsers */
body, h1, p {
  margin: 0;
  padding: 0;
}

ul { list-style-type: &#x2713; }

/* Apply a background color to the whole page */
body {
  background-color: #f4f4f4;
  font-family: Arial, sans-serif;
}

/* Responsive table */
#flexTable {
  display: flex;
  align-items: center; 
  justify-content: center;
  padding: 20px;
  text-align: center;
  margin: 0 auto;
}

/* Title Section */
.title-section {
  background-color: #FFF;
  color: white;
  text-align: center;
  padding: 1em 0;
}

.title-section img {
  max-width: 100%;
  min-width: 200px;
  width: calc(100% - 2em);
  margin: 1em;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Subtitle Section */
.topbody-section {
  background-color: #FFF;
  color: white;
  text-align: center;
  padding: 1em 0;
}

/* Image Section */
.image-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1em;
}

.image-section img {
  max-width: 100%;
  min-width: 200px;
  width: calc(33.33% - 2em);
  margin: 1em;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Footer Section */
.footer-section {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 1em 0;
}
