
    body {
      background-color: black;
      overflow: none;
      margin: 0;
    }

    ul.navbar {
      list-style-type: none;
      margin: 0;
      z-index: 2;
      padding: 0;
      overflow: hidden;
      background-color: #333;
      position: absolute;
      width: 100%;
      top: 0;
      left: 0;
    }

    li.nav-item {
      float: left;
      cursor: pointer !important;
    }

    li.nav-item a {
      display: block;
      color: orange;
      transition: all 1s;
      text-align: center;
      padding: 14px 16px;
      text-decoration: none;
    }

    li.nav-item a:hover {
      background-color: #444;
    }

    #frame {
      border: 0 solid black;
      position: absolute;
      width: 100%;
      z-index: 1;
      height: 100%;
      bottom: 0;
      left: 0;
    }

    @import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap");

    :root {
      --primary-color: orange;
      --secondary-color: #c4c4c4;
      --background-color: #0f0f0f;
    }

    #title {
      width: 100%;
      position: absolute;
      bottom: 60%;
      left: 0;
      text-align: center;
      color: var(--primary-color);
      text-shadow: 3px 6px 2px var(--secondary-color);
    }

    #searchbar {
      width: 70%;
      position: absolute;
      bottom: 45%;
      left: 15%;
      padding-top: 10px;
      padding-bottom: 10px;
      border-radius: 25px;
      background: transparent;
      border: 2px solid black;
      text-align: center;
      color: var(--primary-color);
      border: 3px solid var(--primary-color);
    }

    #searchbar::placeholder {
      color: var(--primary-color);
    }

    body {
      background-color: var(--background-color);
      font-family: "Inter", sans-serif;
    }

    h1, h2, h3 {
      color: var(--primary-color);
    }

    a {
      color: var(--secondary-color);
    }

    .ember-particles {
      position: absolute;
      width: 10px;
      height: 10px;
      background-color: #ff8c00;
      border-radius: 50%;
      animation: ember-fall 3s infinite;
      z-index: 9999;
      pointer-events: none;
    }

    .ember-particle {
      flex: 1;
      position: relative;
      top: -10%;
      animation: ember-fall 15s linear, ember-fall 5s ease-in-out;
      animation-delay: var(--d);
      animation-iteration-count: infinite;
      width: 10%;
      height: 10%;
      color: white;
    }

    @keyframes ember-fall {
      from {
        transform: translateY(-100%);
        opacity: 1;
      }
      to {
        transform: translateY(100%);
        opacity: 0;
      }
    }
  </style>
</head>
<body>
  <!-- Your existing HTML content here -->

  <!-- Add ember particles -->
  <div class="ember-particle" style="--d:0s"></div>
  <div class="ember-particle" style="--d:2s"></div>
  <div class="ember-particle" style="--d:4s"></div>
  <!-- Add more ember particles as needed -->

</body>
</html>

