/* styles.css */
.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333; /* Change this to your desired background color */
    padding: 10px 0;
}

/* Style the navigation links */
.sticky nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.sticky nav ul li {
    display: inline;
    margin: 0 15px;
}

.sticky nav ul li a {
    color: #fff; /* Change this to your desired text color */
    text-decoration: none;
}

body {
	font-family: Verdana, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #333
    /*background-image: url('Forrest.jpg'); /* Replace 'background.jpg' with your image file path */
    /*background-size: cover; /* Adjusts the background image size */
    /*background-position: center center; /* Centers the background image */
    /*background-attachment: fixed; /* Keeps the background fixed when scrolling */
}

.container {
    max-width: 1000px; /* Adjust the maximum width of your content box as needed */
    margin: 0 auto; /* Centers the container horizontally */
    padding: 20px; /* Add padding to the content box */
    background-color: rgba(255, 255, 255, 0.9); /* Background color for the content box with some transparency */
    border-radius: 10px; /* Rounded corners for the content box */
}


/* Add more styles as needed */
h1 {
    color: #333; /* Text color for headings */
}

h5 {
    color: rgba(255, 255, 255, 0); /* Text color for invisible tags */
}

p {
    color: #111; /* Text color for paragraphs */
}


