body {
  font-family: Arial, sans-serif;
  margin: 0;
  color: #333;
  background-image: url('img/bck.jpg');
  background-size: cover;     
  background-position: center;  
  background-attachment: fixed; /* efekt "parallax" - pozadie sa nehýbe */
  background-repeat: no-repeat;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 70px;
  width: auto;
}

header {
  background-color: #2c3e50;
  color: white;
  padding: 0px 0;
  text-align: center;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 25px;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #f1c40f;
}

main {
  max-width: 900px;
  margin: 50px auto;
  background: rgb(255, 239, 239, 0.85);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

h1 {
  color: #2c3e50;
  text-align: center;
}

p {
  line-height: 1.6;
  text-align: justify;
}

footer {
  background-color: #2c3e50;
  color: white;
  text-align: center;
  padding: 15px 0;
  position: fixed;
  bottom: 0;
  width: 100%;
}

footer a {
  color: #f1c40f;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  text-decoration: underline;
}
