body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #eef2f3, #8e9eab);
    color: #000;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8); /* már benne van nálad */
    padding: 10px 0;
    z-index: 1000; /* biztosan a tartalom fölé kerüljön */
    display: flex;
    justify-content: center; /* KÖZÉPRE IGAZÍTÁS! */
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

section {
    margin-top: 80px; /* vagy amennyi elfér a menü alatt */
    text-align: center;
    padding: 50px 20px;
    border-radius: 10px;
    display: inline-block;
    max-width: 80%;
}

h1 {
    font-size: 2em;
    margin-top: 50px;      /* <-- ezt add hozzá vagy növeld */
    margin-bottom: 20px;
    text-align: left;
   /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); */
}


h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    text-align: left;
  /*  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); */
}

h4 {
    font-size: 1.5em;
    margin-bottom: 20px;
    text-align: justify;
   /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); */
}



ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
    display: inline-block;
}

ul li {
    font-size: 1.2em;
    margin: 5px 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: 20px;
    margin-bottom: 200px; /* vagy amennyi kell */
    margin-left: auto;
    margin-right: auto;
}

/* Modern háttér minden oldalra */
html {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
background: url('background.jpg') no-repeat top center fixed;
background-size: cover;
}

p {
    text-align: justify;
}

/* Balra rendezett kép */
img.balra {
    display: block;
    margin-left: 0;
    margin-right: auto; /* Balra igazítás */
    margin-bottom: 80px; /* További tér a felirat alatt */
}

/* Középre igazított képek */
img.kozep {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
