/* Ensure body and html take up the full height */
html, body {
    height: 100%;
    margin: 0;
    display: flexbox;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: 'Arial', sans-serif;
    position: relative;
    overflow: hidden;  /* Prevent scrolling due to particles overflow */
    background: linear-gradient(45deg, #ff7e5f, #feb47b, #6a11cb, #2575fc);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite; /* Animate gradient */
}

/* Animate the gradient colors */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Create a full-screen container for particles */
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;  /* Place particles behind content */
}

/* Styling the div container for links */
#hrefs {
    position: relative;
    z-index: 1;  /* Place content above particles */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8); /* Glow effect */
}

/* Styling for links */
a {
    margin: 15px 0;
    text-decoration: none;
    font-size: 30px; /* Make text bigger */
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px; /* More spacing between letters */
    font-weight: bold;
    position: relative;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

/* Fancy hover effects for links */
a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff7e5f;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

a:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

a:hover {
    color: #ff7e5f; /* Change color on hover */
    transform: translateY(-5px); /* Slight lift effect */
    text-shadow: 0 0 20px #ff7e5f, 0 0 30px #feb47b, 0 0 40px #6a11cb;
}

/* Add a blur effect to the background */
body {
    backdrop-filter: blur(10px); /* Optional: adds a blur effect behind the content */
}
