        body {
            margin: 0;
            padding: 0;
            background: url('bazfootball_photo.jpg') no-repeat center center fixed;
            background-size: cover;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100vh;
            text-align: center;
            color: #fff; /* Fehér szövegszín */
            font-family: Arial, sans-serif;
        }
        h1 {
            font-size: 2em;
            color: white;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
        }
        .navbar {
            position: absolute;
            top: 0;
            left: 0;
            width: 98%;
            background: rgba(0, 0, 0, 0.8);
            padding: 15px;
            display: flex;
            justify-content: flex-start;
        }
        .navbar ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
        }
        .navbar ul li {
            position: relative;
            margin: 0 15px;
        }
        .navbar ul li a {
            color: white;
            text-decoration: none;
            padding: 10px 15px;
            display: block;
        }
        .navbar ul li:hover > ul {
            display: block;
        }
        .navbar ul ul {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(0, 0, 0, 0.8);
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .navbar ul ul li {
            position: relative;
            width: 200px;
        }
        .navbar ul ul li ul {
            position: absolute;
            left: 100%;
            top: 0;
        }
        .navbar ul ul li a {
            display: block;
            padding: 10px;
        }
        .flag-container {
            display: flex;
            gap: 10px;
            margin-left: auto;
            padding-top: 10px;
            padding-right: 10px;
        }
        .flag-container img {
            width: 40px;
            height: 30px;
            cursor: pointer;
        }
        .container {
            margin: 10px;
			padding: 20px;
			width: 50%;
			min-width: 320px;
			background-color: rgba(0, 0, 0, 0.7); 
			margin-top: 20px; 
            position: absolute;
            top: 65px;
            left: 0px;
			
        }
		
    