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

body {
    font-family: 'Outfit', sans-serif;
    background-image: url('images/istockphoto-2179695712-612x612_2025-09-09_01_03_53.588147.jpg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    width: 100%;
}

header {
    background-color: #02734A;
    color: white;
    padding: 10px 0;
    text-align: center;
    font-family: 'Outfit', sans-serif;
}

.header-container {
    display: flex;
    gap: 30px;
    border: 5px solid #040504;
    border-radius: 8px;
    padding: 12px 24px;
    margin: 20px auto;
    width: fit-content;
    background: #fff;
    color: #53913D;
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    word-spacing: 15px;
}

.nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.background-image-container {
    position: relative;
    text-align: center;
    color: white;
    width: 100%;
    height: 200px;
    overflow: hidden;

}

.background-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: white;
    z-index: 2;
    font-size: 2rem;
}

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.mySlides {
  display: none;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}