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

/* Body styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6; /* SPACE BETWEEN TEXT LINES */
     display: flex;
    flex-direction: column;
    align-items: center;     /* centers horizontally */
    justify-content: flex-start; /* or center for vertical centering */  
    min-height: 100vh;
    background-color: #FFFEFE; /* CHANGE YOUR BACKGROUND COLOR HERE */
	color: darkolivegreen;
}

.bg {
  background-image: url("background_big.jpg"); /* replace with your file */
  background-size: cover;     /* makes it fill the screen */
  background-position: center; /* keeps it centered */
  background-repeat: no-repeat; /* no tiling */
  background-attachment: fixed; /* optional: parallax-like effect */
}

.bg-pattern {
  background-image: url("background_small.jpg"); /* small repeating image */
  background-repeat: repeat;            /* repeats both horizontally and vertically */
  background-position: top left;        /* optional: start position */
  background-size: auto;                /* keeps original size of small image */
}

/* Header styles */
header {
    background-color: #FFFFFF; /* CHANGE YOUR HEADER BACKGROUND COLOR HERE */
    color: #0D5004; /* CHANGE YOUR HEADER  TEXT COLOR HERE */
    padding: 15px 0;
    text-align: center; /* ALIGN YOUR TEXT - LEFT CENTER OR RIGHT*/
	margin-bottom: 50px; /* SPACE UNDERNEATH the header to make room for the image and text*/
}

/* Navigation bar styles */
nav {
    background-color: #FFFFFF* CHANGE YOUR BACKGROUND COLOR FOR THE LINKS HERE - MINE IS THE SAME - BLACK */
    padding: 10px;
    text-align: center;
	}
	nav a { margin: 0 15px;
}
	


a {
    color: darkolivegreen; /* LINK COLOR */
    text-decoration: none;
   
}
a:visited {
  
	 color:darkolivegreen; /* HOVER LINK COLOR */
}


a:hover {
  
	 color: darkolivegreen; /* HOVER LINK COLOR */
}


/* Container for images */
.main{
   padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    max-width: 900px;     /* prevents full-width stretch */
    width: 80%;           /* responsive size */
    background-color: #111; /* optional dark background */
    margin: 0 auto;       /* centers horizontally */
}

/* Grid for images */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.image-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Text content inside the main container */
.text-content {
     max-width: 700px;   /* keeps paragraphs narrow */
    margin: 20px auto;  /* centers them */
    text-align: left;   /* or center/right if you want */
    font-size: 20px;
    line-height: 1.6;
    color: darkolivegreen;
  
}

.black {
	
	color: black;
}

h1, h2 {
	text-align: center;/* or center/right if you want */
}

/* Footer styles */
footer {

	color: #44632F; /* FONT COLOR FOOTER*/
    text-align: center;/* ALIGN YOUR TEXT - LEFT CENTER OR RIGHT*/
    padding-top: 70px;
	padding-bottom: 20px;
	  margin-top: auto; /* Pushes the footer to the bottom */
}


 .slideshow-container {
  position: relative;
  max-width: 800px;   /* set a width you like */
  height: 500px;      /* fixed height for all slides */
  margin: auto;
  overflow: hidden;   /* crops overflow */
  background: #111;   /* fallback so it’s never blank */
}

.mySlides {
  display: none;
  width: 100%;
  height: 100%;
}

.mySlides img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* makes all images fill box evenly */
}

        .prev, .next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: auto;
            padding: 16px;
            margin-top: -22px;
            color: white;
            background-color: rgba(0, 0, 0, 0.5);
            border: none;
            font-size: 18px;
        }

        .prev {
            left: 0; /* Align the left arrow to the far left */
            border-radius: 0 3px 3px 0;
        }

        .next {
            right: 0; /* Align the right arrow to the far right */
            border-radius: 3px 0 0 3px;
        }