/* styles.css */
body {
    background-color: #111;
    color: #d7d7d7;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden; /* Prevent scrollbars due to particles */
    position: relative;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1; /* Ensure particles are behind the content */
}

.container {
    text-align: left;
    max-width: 800px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    font-size: 2em;
    font-weight: bold;
    color: #fff;
}

p, h2, nav, footer {
    font-size: 1em;
    margin: 10px 0;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s forwards;
}

.fade-in-rest {
    opacity: 0;
    animation: fadeInFloat 1.5s forwards;
}

@keyframes fadeInFloat {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

a {
    color: #6dff9b;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.shree {
    color: #6dff9b; /* Color for "Shree" */
}

.aspiring {
    color: #888888; /* Lighter color */
}

.separator {
    border-bottom: 2px solid #4f4f4f;
    margin: 10px 0;
}

nav {
    margin-top: 20px;
    margin-bottom: 10px;
}

nav a {
    padding-bottom: 5px;
    border-bottom: none; /* Remove the default bottom border for individual links */
}
