/*this css is only for the home/landing page*/
body {
    font-family: monospace;
    overflow: hidden;
    margin: 0;  /* Remove default margin */
    min-height: 100vh;  /* Ensure full viewport height */
}
.heading {
    position: absolute;
    text-align: center;
    top: 30%;
    width: 100%;
}
.heading h1 {
    color: white;
    font-size: 70px;
    z-index: 1;
}
#particles-js {
    position: fixed;  /* Change from relative to fixed */
    top: 0;
    left: 0;
    width: 100vw;  /* Use viewport width */
    height: 100vh;  /* Use viewport height */
    z-index: -1;
    background-color: rgb(0, 0, 0);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;  /* Full width */
    font-size: 17px;
    font-family: monospace;
    background-color: rgba(0, 0, 0, 0.2);  /* Slight background for readability */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 14px 0;  /* Remove horizontal padding */
    z-index: 2;
    display: flex;  /* Use flexbox for alignment */
    justify-content: center;  /* Center nav items */
}

.navbar nav {
    display: flex;
    gap: 20px;  /* Space between nav items */
}

.navbar a {
    color: white;
    text-align: center;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.navbar a:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: black;
    transform: translateY(-2px);
}

.navbar a.active {
  background-color: white;
  color: black;
}

.heading .icons a{
  color: white;
  size: 20px;
  padding: 10px;
  background-color: transparent;
  transition: transform 0.3s ease;

}
.heading .icons a:hover i{
  transform: scale(2.05);
}
