
html, body {
      height: 100%;
        font-family: Arial, sans-serif;
	}

#content {
	width:900px;
	margin: 30px auto;
	padding-top: 0px;
	padding-left:10px;
	padding-right: 10px;
	border: 1px solid #FFFFFF;
	background-color: #355E3B;


}
.container {
  display: flex; 
        height: 100%;
	}

.section {  
        padding: 10px;
	  color: white;
	  }

.section-left {
      width: 15%;
      background-color: white;
      border-right: 4px solid #355E3B;
      padding-left:"15px";
}

.section-right {
         flex: 1;  fill the rest of the space */
      background-color: white;
      }

h1 {
      font-size: 2em;
        margin-bottom: 20px;
	}

p {
      font-size: 1.2em;
          color: #355E3B;
}

/* Header container */
header {
  background-color: #355E3B;
  color: #ffffff;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo / title */
header .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

/* Responsive (mobile) */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  header nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
}


/* buttons */
.myGreenButton {

  background-color: #355E3B;
  border: none;
  color: white;     /* text color */
  text-align: center;
  padding: 10px 30px;
  text-decoration: none;
  font-size: 18;
  font-weight: bold;
  border-radius: 50px;  /* round corners */

}
.myGoldButton {

  background-color: #dfac0b;
  border: none;
  color: white;     /* text color */
  text-align: center;
  padding: 10px 30px;
  text-decoration: none;
  font-size: 18;
  font-weight: bold;
  border-radius: 50px;  /* round corners */

}
.myWhiteButton {

  background-color: #FFFFFF;
  border: 2px solid #dfac0b;
  color: BLACK;     /* text color */
  text-align: center;
  padding: 3px 30px;
  text-decoration: none;
  font-size: 24;
  font-weight: bold;
  border-radius: 50px;  /* round corners */

}


/* Header 

.main-header {
  background-color: #06402B;
  height: 100px;
  color: dark-green;
  padding: 20px 20px;
  display: flex;
  align-items: center;
}

/* Logo / Title */
header h1 {
  margin: 0;
  font-size: 24px;
}

/* Navigation */
/* nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

nav ul li a:hover {
  text-decoration: underline;
}
*/

ul { list-style: square;
     list-style-position: outside;
   padding: 20;
   margin: 15;
}

a {
    text-decoration: none;
}

    


/*banner stuff */

.banner {
    width: 100%;
    overflow: hidden;
    background: #111;
    color: #fff;
    padding: 10px 0;
    box-sizing: border-box;
    display:flex;
    align-items:ceenter;
}

.banner-text {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    font-size:  20px;
    animation: scroll-left 35s linear infinite;
}
.banner-text:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }

/*viewer stuff */

.slider-container {
        display: flex;
	    align-items: center;
	        justify-content: center;
		    position: relative;
		        max-width: 600px;
			    margin: auto;
			    }
#slider-image {
        width: 100%;
	    height: auto;
	    }
button {
        cursor: pointer;
	    position: absolute;
	        top: 50%;
		    transform: translateY(-50%);
		        background-color: rgba(0,0,0,0.5);
			    color: white;
			        border: none;
				    padding: 16px;
				    }
#prev { left: 0; }
#next { right: 0; }




}

