body {
    background-color: black;
    color: white;
	font-family: 'Roboto', sans-serif;
    margin: auto;
    padding: 0;
    max-width: 82%;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;    
    position: relative;
    z-index: 2;
    border-radius: 10px;
}

 #video-container {
    position: relative;
    width: 100%;
}

#video {
    width: 100%;
    height: auto;
    position: relative;
    top: 0;
    left: 0;
}

.logo {
    color: white;
}

.language {
    color: white;
}

nav {
    background: linear-gradient(to bottom, #444, black);	
	border-radius: 10px;   	
    position: relative;
    z-index: 2;
	
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    position: relative;
}

nav a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: white;
	transition: color 0.3s;
}

nav a:hover {    
	color: dodgerblue;
	transition: background 1s ease;
	background: linear-gradient(to bottom, #444, black);
	border-radius: 10px;
	overflow: hidden; /* Az átmenetnél túllógó részek eltüntetése */
}

nav ul ul {
    display: none;
    position: absolute;
    top: 100%;
    background-color: black;
}

nav ul li:hover > ul {
    display: inherit;
}

nav ul ul li {
    width: 200px;
    float: none;
    display: list-item;
    position: relative;
}

nav ul ul ul li {
    position: relative;
    top: -60px;
    left: 200px;
}

#mobile-menu {
    display: none;
    cursor: pointer;
    padding: 15px;
    background-color: #333;
}

#mobile-menu .bar {
    height: 3px;
    width: 25px;
    background-color: white;
    margin: 5px 0;
}

@media only screen and (max-width: 768px) {
    #mobile-menu {
        display: block;
    }

    nav {
        display: none;
        /* További stílusok a mobilmenühöz */
		background: linear-gradient(to bottom, #333, black);
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin-right: 0;
    }

    nav a {
        padding: 15px;
    }

    nav ul ul {
        position: static;
        display: none;
        box-shadow: none;
        border-top: none;
    }
}

#map {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 arányhoz szükséges padding */
    height: 0;
    overflow: hidden;
}

#map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
	height: 75%;
}

#contact-info {
    width: 380px; /* Maximális szélesség beállítása */
    height: 250px;
    margin: 10px 10px; /* Középre igazítás */
    padding: 20px; /* Távolság a konténer és a tartalom között */
    background: linear-gradient(to bottom, #444, black);
    border: 1px solid #ccc; /* Keret */
    border-radius: 5px; /* Keret lekerekítése */
    float: left; /* Balra igazítás */
    text-align: center;    
}

#contact-info h2 {
    color: #333; /* Cím színe */
}

#contact-info p {
    font-size: 16px; /* Szövegméret */
    line-height: 1.8; /* Sortávolság */
}

#contact-info a {
    color: #007bff; /* Hivatkozás színe */
    text-decoration: none; /* Aláhúzás eltávolítása */
}

#contact-info a:hover {
    text-decoration: underline; /* Aláhúzás megjelenítése a hivatkozás fölé húzásakor */
}

ul li a {
    text-decoration: none;
    color: white;
}

ul li a:hover{
    text-decoration: none;
    color:#007bff;
}