body {
    margin-top: 120px;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

.header {
            z-index: 9999;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 60px;
        }
        .header-content {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
            padding: 0 20px;
        }
        
        .floating-icons {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 1000;
        }
        .floating-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateX(50px);
            text-decoration: none;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        }
        .floating-icon i {
            color: white;
            font-size: 24px;
        }
        .floating-icon:hover {
            transform: scale(1.1);
        }
        @keyframes iconEntrance {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        .logo {
            height: 50px;
            max-width: 200px;
            object-fit: contain;
        }
        .menu {
            display: flex;
            align-items: center;
        }
        .menu a {
            color: white;
            text-decoration: none;
            margin-left: 30px;
            font-weight: bold;
            padding: 5px 10px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .menu a:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        .login-logout, .register {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1.2em;
            color: white;
            padding: 5px;
            display: flex;
            align-items: center;
        }
        .login-logout:hover, .register:hover {
            opacity: 0.8;
        }
        .auth-buttons {
            display: flex;
            align-items: center;
        }
        .auth-text {
            display: none;
            margin-left: 5px;
        }
        .hamburger {
            display: none;
            font-size: 1.5em;
            color: white;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .header-content {
                max-width: none;
            }
            .hamburger {
                display: block;
            }
            .menu {
                display: none;
                position: fixed;
                top: 60px;
                left: 0;
                right: 0;
                flex-direction: column;
                align-items: stretch;
                padding: 10px;
                z-index: 9998;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            }
            .menu.active {
                display: flex;
            }
            .menu a {
                margin: 10px 0;
                text-align: center;
            }
            .auth-buttons {
                width: 100%;
                justify-content: center;
                padding: 10px 0;
            }
            .login-logout, .register {
                margin: 0 10px;
            }
            .auth-text {
                display: inline;
            }
            .menu-separator {
                width: 80%;
                height: 1px;
                background-color: rgba(255, 255, 255, 0.3);
                margin: 10px auto;
            }
            .menu-contact {
                display: flex;
                justify-content: center;
                align-items: center;
                margin-top: 10px;
            }
            .menu-contact a {
                color: white;
                text-decoration: none;
                font-size: 1.2em;
                display: flex;
                align-items: center;
            }
            .menu-contact i {
                margin-right: 10px;
            }
        }

h1, h2 {
            
            margin-bottom: 30px;
            color: #333;
        }
        
h1 {
    text-align: center;
}

button {
    background-color: #45a049;
    color: #ffffff; /* A szöveg színe fehér, hogy kontrasztos legyen a háttérrel */
    border: none; /* Eltávolítja a gomb szegélyét */
    padding: 10px 20px; /* Kitöltés a gomb körül */
    font-size: 16px; /* Betűméret */
    cursor: pointer; /* Mutatókéz, hogy jelezze, kattintható */
    border-radius: 5px; /* Lekerekített sarkak */
    transition: background-color 0.3s ease; /* Áttűnési effekt a háttérszín változásakor */
}

button:hover {
    background-color: #388e3c; /* Sötétebb árnyalat, amikor az egér a gomb fölött van */
}
