body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: rgb(0, 0, 0); 
    background-size: cover; 
    background-repeat: no-repeat; 
  }

.navbar {
   background-color: #1d1d1d9e;
  backdrop-filter: blur(5px); 
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(21, 21, 21, 0.84);
  border-radius: 20;
}

.navbar .website-title {
  float: left;
  display: block;
  color: #fff;
  text-align: center;
  padding: 20px;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
}

.navbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.navbar li {
  padding: 10px;
  float: left;
  margin-left: 5px;
  font-size: 20px;
  font-weight: bold;
}

.nav-links {
  margin-left: 5px;
}

.navbar a {
  display: block;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  padding: 16px 20px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.navbar a:hover {
  background-color: #4c4c4ca8; 
  border-radius: 10px;
}

.footer {
   background-color: #1d1d1d9e;
  backdrop-filter: blur(5px); 
    box-shadow: 0 2px 4px rgba(31, 31, 31, 0.87); 
    font-weight: bold;
      color: #fff;
      text-align: center;
      font-size: 16px;
      padding: 15px;
      position: fixed;
      bottom: 0;
      width: 100%;
       z-index: -1;
    }

.search-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
}

  #frame {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: none;
  }

.search-title {
  font-size: 65px;
  color: white;
  margin-bottom: 20px;
  font-weight: 1000;
}

.search-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  margin: 0 auto;
}

.search-bar input[type=text] {
  padding: 30px;
  width: 100%; 
  border: none;
  border-radius: 20px;
  font-size: 16px;
  background-color: #1414149f;
  backdrop-filter: blur(10px); 
  box-shadow: 0 0 10px rgba(233, 233, 233, 0.719); 
   text-align: center; 
  text-indent: 0.5em; 
  outline: none;
  caret-color: #ffffff; 
}

.search-bar input[type=text]:not(:placeholder-shown) {
  color: #ffffff; 
}
  #particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  z-index: -1;
}

  .container {
    float: right;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 50px;
    text-align: center;
  }

  .input-description {
  font-size: smaller; /* Adjust size as needed */
  color: rgb(255, 255, 255); /* Use any color that fits your design */
  margin-top: 4px; /* Additional space above the text, adjust as needed */
  margin-bottom: 4px; /* Space before the next element */
}


#urlInput:focus {
    width: 40%;
    top: 0; 
    transform: translate(-50%, 0%);
}


::placeholder { 
    color: white;
}

     #leftCornerText {
        position: fixed;
        top: 10px;
        left: 10px;
        color: white;
        font-size: 20px;
    }

      @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes pulsate {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
  }

  #clock {
  display: block;
  color: #fff;
  text-align: center;
  padding: 15px;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  }

   .home-icon {
        position: fixed;
        top: 10px;
        left: 10px;
        z-index: 10;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%; /* This makes it round */
        width: 40px; /* Adjust size as needed */
        height: 40px; /* Adjust size as needed */
        background-color: rgba(255, 255, 255, 0.3); /* Semi-transparent white background */
        text-decoration: none; /* Removes underline from links */
          }

.home-icon img {
  width: 70%; /* Adjust the size of the icon inside the circle */
  height: auto;
  opacity: 0.5; /* Makes the image semi-transparent */
}

 .frame {
  height: 100vh;
  width: 100vw;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.content h1 {
    font-size: 2rem;
    animation: fadeInUp 1s ease forwards;
}

.content p {
    max-width: 600px;
    margin: auto;
    line-height: 1.6;
    animation: fadeInUp 2s ease forwards;
}



