.slogan {
	margin-top: 5rem;
	background: #000000;
	color: #ffffff;
	padding: 3rem;
	width: 100%;
	text-align: center;
}

.tabella-homepage {
  margin-top: 2rem;       /* Positions the table exactly 2rem below the slogan */
  width: 100%;            /* Spans 100% width of the available layout space */
  display: flex;
  flex-direction: column; /* Mobile first: Content stacks vertically on narrow screens */
  gap: 20px;              /* Adds breathing room between the items on mobile view */
  box-sizing: border-box;
}

.tabella-homepage > div {
  background: rgba(0, 0, 0, 0.7); /* Semitransparent dark fill so text pops over background image */
  color: #ffffff;
  padding: 2rem;
  text-align: center;
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .tabella-homepage {
    flex-direction: row;  /* Splits your content out into side-by-side columns */
    gap: 24px;            /* Clean horizontal spacing between column modules */
  }

  .tabella-homepage > div {
    flex: 1;              /* Automatically sizes them to 3 mathematically equal blocks */
  }
}