body {
/*    background-color: #001f3f; /* Dark navy blue background */
    color: #ffffff; /* White text */
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Full viewport height */
	z-index: -1;
}


nav {
    background: url('img/Hex2.1.png') no-repeat center center; /* Replace with the path to your background image */
    background-size: cover; /* Ensures the image covers the entire nav bar */
    opacity: 0.65; /* 50% transparency */
   padding: 1rem;
    position: relative; /* Ensures the logo and links are placed properly */
    z-index: 1; /* Makes sure the nav is above the background */
}

nav img {
    display: block;
    max-height: 100px; /* Limit the height */
    width: auto;
   /* background-color: transparent;*/
    border: none;
}

nav a {
    color: #ffffff; /* White navigation links */
}

nav a:hover {
    color: #90ff33; /* Light sky blue hover effect */
}
.container-fluid {
    position: relative; /* Make the parent relative for absolute positioning */
}


.est-text {
    position: absolute; /* Position it absolutely within the nav */
    top: 75%; /* Center vertically */
    left: 5%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust for the text's own dimensions */
    font-size: 0.50em; /* Adjust the font size as needed */
    color: #42cbed; /* Change the text color if necessary */
    text-align: center; /* Center text */
}

#Matrix {
    position: fixed; /* Fix it to the viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Keep it behind the content */
}



main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
	background: url('img/matrix.png') no-repeat center center fixed;
    background-size: 1500px;
	opacity: 0.65; 
    padding: 2rem 0;
    z-index: 1;
    position: relative;
}

.scrolling-content {
    background-color: rgba(0, 0, 0, 0.0); /* Semi-transparent background for readability */
    padding: 20px;
    max-height: 100vh;
    width: 100%;
    max-width: 1500px;
    overflow-y: auto;
    position: relative;
    z-index: 2;
}

h2, h3 {
    color: #fff700; /* Light sky blue for headings */
}
h4 {
  color: #42cbed;
   
}
p, li {
    color: #fbff7c; /* Yellow text for content */
}

/* Scrollbar customization */
.scrolling-content::-webkit-scrollbar {
    width: 12px;
}

.scrolling-content::-webkit-scrollbar-track {
    background: #10353b;
}

.scrolling-content::-webkit-scrollbar-thumb {
    background-color: ##80dfff;
    border-radius: 6px;
    border: 3px solid #000000;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: transparent; /* Darker navy for footer */
    color: #0e0e0f;
    position: relative;
    width: 100%;
    z-index: 3;
    margin-top: auto; /* Pushes the footer to the bottom */
}

footer a {
    color: #80dfff; /* Light sky blue for footer links */
}

footer a:hover {
    color: #ffffff; /* White on hover */
}
