/* Alap stílusok */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff; /* Halványkék háttér */
    margin: 0;
    padding: 0;
}

header {
    background-color: #333;
    color: white;
    padding: 20px 0;
}

header h1 {
    margin-left: 20px;
    font-size: 2.5em;
}

/* Navigációs menü stílusai */
nav ul {
    list-style-type: none;
    padding: 0;
    display: flex; /* Flexbox a menü elemek elrendezéséhez */
    justify-content: flex-end; /* Jobbra igazítja a menüt */
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    display: flex;
    align-items: center;
}

nav ul li a i {
    margin-right: 10px; /* Kis távolság az ikon és a szöveg között */
}

nav ul li a:hover {
    color: #f0f8ff; /* A menüelem színe világoskék, ha fölé viszik az egeret */
}

/* Tartalom stílusok */
.content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ugyvitel-img, .audio-img {
    width: 100%; /* A kép szélességét az elérhető helyhez igazítja */
    max-width: 33.33%; /* A kép ne legyen nagyobb, mint a képernyő 1/3-a */
    height: auto;
}

.text {
    flex: 2;
}

/* Reszponzív design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin-left: 0;
        margin-top: 10px;
    }

    .content {
        flex-direction: column;
        text-align: center;
    }

    .ugyvitel-img, .audio-img {
        max-width: 100%; /* Mobilon a kép teljes szélességét használja */
    }

    .text {
        text-align: center;
    }
}

/* Footer stílusai */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* A regisztrációs űrlap stílusai */
.register-form {
    display: flex;
    flex-direction: column;
}

.register-form .btn {
    font-size: 1.2em;
    padding: 10px;
}

/* Ikonok stílusai */
.fas {
    font-size: 1.5rem;
}

/* Halványkék háttér a body-n kívül */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}
