/* General styles */
body {
    margin: 0;
    padding: 0;
    background-color: #1a1a1a; /* Almost black background */
    color: #e0e0e0; /* Light gray text */
    font-family: 'Inter', sans-serif; /* Use Inter font */
    overflow: hidden; /* Prevent scrolling */
}

/* Menu bar styles */
.menu-bar {
    background-color: #333; /* Slightly darker gray for the menu bar */
    border-bottom: 1px solid #555; /* Thin line separator */
    position: fixed; /* Fix the menu bar to the top of the page */
    top: 0;
    left: 0;
    width: 100%; /* Full width across the screen */
    z-index: 10; /* Ensure menu stays on top of particles */
}

.menu-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px; /* Padding for spacing */
}

/* Left section - Home button */
.menu-left {
    flex-shrink: 0; /* Prevent shrinking of the Home button */
}

.menu-left h2 {
    color: #e0e0e0; /* Light gray text for "Home" */
    margin: 0;
}

/* Right section - Menu items */
.menu-right ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.menu-right li {
    color: #e0e0e0; /* Light gray text for menu items */
    margin-left: 20px;
}

.menu-right li:first-child {
    margin-left: 0; /* No margin for the first item */
}
.menu-right button {
    cursor: pointer; /* Change cursor to pointer when hovering over the button */
}
/* Full-screen canvas for particles */
#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Place behind other elements */
}

.floating-content {
    position: absolute;
    top: 10%; /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%); /* Center horizontally */
    width: 80%; /* Width of the floating div */
    height: 700px;
    max-width: 800px; /* Maximum width */
    background-color: rgba(255, 255, 255, 0.9); /* Light background */
    border: 1px solid #ccc; /* Border for visibility */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow for depth */
    z-index: 100; /* Ensure it appears above particles */
    padding: 20px; /* Inner padding */
}
