      body {
            margin: 0;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background-color: #000;
            color: white;
            position: relative; 
        }

        #particles-js {
            position: absolute;
            width: 100%;
            height: 100%;
            background-color: #000;
            background-position: 50% 50%;
            background-repeat: no-repeat;
            background-size: cover; 
        }

        .content {
            position: relative; /* Ensure it is above the absolute #particles-js */
            text-align: center;
        }

        h1 {
            font-size: 3em;
            font-family: Arial, sans-serif;
            color: transparent;
            background: linear-gradient(to right, #fff, #000);
            background-clip: text;
            background-clip: text;
            animation: gradientAnimation 3s infinite;
            margin: 0;
        }
        
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            display: flex;
            justify-content: center; 
            align-items: center;
            padding: 10px;
            background: rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }

        .logo-link {
            position: absolute; 
            left: 10px; 
            top: 50%;
            transform: translateY(-50%); 
        }

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

        .logo-link:hover .nav-image {
            transform: scale(0.9);
        }

        .nav-option-thingy {
            display: flex;
            gap: 10px;
        }

        .nav-option {
            text-decoration: none;
            color: #fff;
            font-size: 16px;
            transition: color 0.3s ease, box-shadow 0.3s ease;
            padding: 10px;
            border-radius: 15px;
        }

        .nav-option:hover {
            color: #ccc;
            box-shadow: 0 0 10px rgba(255, 255, 255);
        }

        .content {
            padding: 100px 20px;
        }
        
        .input {
            width: 100%;
            background-color: transparent;
            border: 1.5px #ccc solid;
            width: 400px;
            border-radius: 5px;
            font-size: 14px;
            padding: 12px;
            text-align: center;
            color: white;
            outline: none;
          
            transition: color;
            transition-duration: 100ms;
          }
          
          ::selection {
          		    background-color: #ffffff; 
          		    color: #000000; 
		      }
        
        .image-container {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 10px;
        }

        .image-container a img {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            border: 2px solid #fff;
