/* Optional: Add some CSS for better spacing and indentation */
ul {
    list-style-type: disc; /* Bullet points */
    margin-left: 30px; /* Indent main points */
}
ul ul {
    list-style-type: circle; /* Different bullet style for sub-points */
    margin-left: 30px; /* Indent sub-points */
}
ul ul ul {
    list-style-type: square;
    margin-left: 30px;
}

/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Sticky navbar */
nav {
    position: sticky;
    top: 0;
    background-color: #333;
    padding: 10px 20px;
    z-index: 999; /* Ensure navbar stays above other content */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
}

/* Navigation links */
nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
}

nav a:hover {
    color: #007BFF; /* Change color on hover */
}

/* Content sections */
.content {
    margin-top: 100vh;
    padding: 20px;
}

section {
    margin-bottom: 2rem;
    padding: 3rem;
    background-color: #f4f4f4;
    border-radius: 8px;
}

h1 {
    margin-bottom: 0.5rem;
    padding: 2rem;
}


/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive design */
@media (max-width: 768px) {
    nav {
        padding: 10px;
    }
    nav a {
        display: block;
        margin: 10px 0;
    }
}

/* Full-screen container */
body {
    position: relative;
    background-color: gray;
}

/* Bouncing logo */
#maxwell-bounce {
    position: fixed;
    width: 200px; /* Adjust size as needed */
    height: auto;
    z-index: 1000;
}

#maxwell-bounce img {
    width: 100%;
    height: 100%;
}