.belt-container {
  display: flex;
  height: 150px; /* nebo jakákoli výška */
  width: 100%;
  background-color: rgba(186, 75, 82, 1);
}

.column {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertikální zarovnání */
  align-items: center;     /* horizontální zarovnání */
  border: none;
}

.line {
  margin: 5px 0;
  font-size: 18px;
}

.belt-line    {
    font-family: "Source Sans 3", sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: white;
    line-height: 1.0;
    /*text-transform: uppercase;*/
}

@media (max-width: 768px) {
  .belt-line {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .belt-line {
    font-size: 1.4rem;
  }
}
