
/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

   body {
    /*background-image: url('pictures/ForestFLoor.png'); /* Replace with actual URL */
    /*background-size: 900px 900px;  /*Adjust for pixel effect */
    /*background-repeat: fill; /*repeat;*/
    /*image-rendering: auto; /* Ensures sharp pixel look */
    background-color: #515e4d; /* Fallback color */
    
    
}


.carousel {
  background: #515e4d;
  border-radius: 15px;
  box-shadow: 0 4px 16px #3d4b39(0,0,0,0.08);
  padding: 20px;
  max-width: 400px;
  margin: 30px auto;
  text-align: center;
}

.carousel img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

#carousel-caption {
  margin: 15px 0 10px 0;
  font-size: 1.1em;
  color: #2d3436;
}

.carousel-controls button {
  background: #1c2818;
  color: #b5cbae;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  margin: 0 8px;
  cursor: pointer;
  font-size: 1em;
  transition: background 0.2s;
}

.carousel-controls button:hover {
  background: #769d76;
}



button {
  background: #1c2818;
  color: #b5cbae;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 1em;
  transition: background 0.2s;
}

button:hover {
  background: #769d76;
 }