    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

        body, html {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
            height: 100%;
            overflow: hidden;
            background-color: black; 
        }

        .navbar {
            background-color: #000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 20px;
            position: fixed; 
            top: 0;
            width: 100%;
            z-index: 1000; 
            border-bottom: 1px solid #141414; 
        }

        .navbar-logo .logo-image {
            width: 50px;
            height: 50px;
            transition: transform 0.3s ease;
        }

        .navbar-logo .logo-image:hover {
            transform: scale(1.1);
        }

        .navbar-menu {
            list-style: none;
            display: flex;
            margin: 0;
            padding: 0;
        }

        .navbar-menu li {
            margin-left: 20px;
        }

        .navbar-menu a {
            color: white;
            text-decoration: none;
            padding: 10px;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .navbar-menu a:hover {
            background-color: #333;
            color: #fff;
        }

        .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: calc(100vh - 60px);
            text-align: center;
            position: relative;
            margin-top: 20px; 
        }

        h1 {
            color: white;
            margin: 0;
        }

        p {
            font-size: 1.2em;
            color: white;
            margin-top: 5px;
        }

        .search-bar {
            position: relative;
            margin-bottom: 20px;
        }

        .search-bar input {
            padding: 10px;
            font-size: 1em;
            border: 1px solid #141414;
            border-radius: 30px;
            background: transparent;
            color: white;
            width: 400px;
        }

        .search-bar img {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
        }

        .images-row {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .images-row a {
            display: block;
        }

        .images-row img {
            width: 30px;
            height: 30px;
            transition: transform 0.3s ease;
        }

        .images-row img:hover {
            transform: scale(1.1);
        }

        #particles-js {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }
