@media screen and (max-width: 600px) {
  table {
    border: 0;
    word-wrap: break-word
  }
  /* Skrytí hlavičky tabulky */
  thead {
    display: none;
  }
  /* Zobrazení řádků jako bloky */
  tr {
    display: block;
    border: 1px solid #ccc;
    margin-bottom: 0px;
    word-wrap: break-word
  }
  /* Buňky se chovají jako flexbox */
  td {
    display: flex;
    flex-direction: column;
    border: none;
    padding: 0px;
    word-wrap: break-word
  }
  /* Oddělení obsahu buňky */
  td:before {
    content: attr(data-label);
    font-weight: bold;
    margin-bottom: 0px;
    word-wrap: break-word
  }
}

#index #motive {
  display: block;
  width: 100%;
  overflow: hidden;
  background-size: cover;
  height: 85vh;
  min-height: 690px;
  background-position: center center;
  text-align: center;
  text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.6);
  max-height: 700px;
}