body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  align-items: center;
  align-content: space-around;
}

.container {
  /*display: flex;*/
  flex-wrap: wrap;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
}

/* Responzívne úpravy */

@media (max-width: 1290px) {
  .container {
    width: 100%;
  }
}

body {
  font-family: sans-serif;
  margin: 0;
}

.podciarknuty-nadpis {
  position: relative;
  text-align: left;
  padding-top: 15px;
  padding-bottom: 20px;
}

.podciarknuty-nadpis::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background-color: #F2C94C;
}

