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

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

.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;
}

/* Responzívne úpravy */

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

/* Vlastný scrollbar */

/* ================================= */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

