  /* Socials - LinkTree */
  @font-face {
    font-family: 'MilkMango';
    src: url('Fonts/milk_mango-webfont.woff') format('woff'),
        url('Fonts/milk_mango-webfont.woff2') format('woff2'),
        url('Fonts/Milk Mango.ttf') format('truetype');
    /* Add any additional properties */
}

@font-face {
    font-family: 'ComfortaReg';
    src: url('Fonts/Comfortaa-Regular.woff') format('woff'),
        url('Fonts/Comfortaa-Regular.woff2') format('woff2');
    /* Add any additional properties */
}

@font-face {
    font-family: 'Farmshow';
    src: url('Fonts/Farmshow.woff') format('woff'),
        url('Fonts/Farmshow.woff2') format('woff2');
    /* Add any additional properties */
}



/* diff colors sections */
body {
    background-color: #3C7042;
    color:#3C7042;
    margin: 0;
    text-align: center;
}

h1 {
    text-align: center;
    padding-top: 2%;
    font-size: 90px;
    margin: 0%;
    font-family: 'Farmshow', sans-serif;
}

h2 {
    text-align: center;
    padding-top: 2%;
    font-size: 50px;
    margin: 0%;
    font-family: 'Farmshow', sans-serif;
}

a {
    color: #EADEC7;
    /* Set your desired color using a color code or name */
    text-decoration: none;
    /* Remove underline */
}

/* Style for visited links */
a:visited {
    color: #BAB2A3; /* Set a different color for visited links */

}

/* Style for hover (when mouse is over) links */
a:hover {
    color: #BAB2A3;
    /* Set a different color for hover state */
}

/* Style for active links (when being clicked) */
a:active {
    color: #3C7042;
    /* Set a different color for active state */
}

h4 {
    font-family: 'ComfortaReg', sans-serif;
    font-size: 20px;
}

p {

    font-family: 'ComfortaReg', sans-serif;
    padding: 20px;
    font-size: 15px;

}

.container {
    width: 100%;
    height: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 15px;
    margin-bottom: 15px;
    max-width: 1000px !important;
  }
  
  .links-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .links-container a {
    width: 80%;
    display: inline-block; /* Ensure the link behaves like a block element */
    padding: 10px 20px; /* Adjust padding for button-like appearance */
    text-align: center; /* Center the text within the button */
    border: 2px solid #BAB2A3; /* Add border to mimic button */
    background-color: #3C7042; /* Button background color */
    color: #EADEC7; /* Text color */
    text-decoration: none; /* Remove default underline */
    border-radius: 5px; /* Optional: Rounded corners for aesthetics */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
  }
  
  .links-container a:hover {
    background-color: #BAB2A3; /* Darker background color on hover */
    border: 2px solid #3C7042;
  }
  
  .margin-top-2 {
    margin-top: 32px;
  }
  
  .bottom {
    width: 100%;
    text-align: center;
    font-weight: bolder;
  }
  
  .bottom span {
    color: #3C7042;
  }
  
  .bottom svg {
    stroke: #3C7042;
    fill: #3C7042;
  }
  
  @media (min-width: 768px) {
    .link {
      width: 100%;
    }
  }
  
  @media (min-width: 576px) {
    .container {
      max-width: 540px;
    }
  }

  .tan {
    color:#EADEC7
  }
  
/* Card */
.card {
    display: flex; /* Use flexbox */
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    border-radius: 5px; /* 5px rounded corners */
    text-align: left;
    font-size: 14px;
    color:#EADEC7;
    background-color: #BAB2A3;
    border: 2px solid #3C7042;
    cursor: pointer;
  }
  
  .card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.6); /* Change shadow on hover */
  }
  

  .container {
    padding: 20px; /* Add padding for content */
  }
  
  /* Add rounded corners to the top left and the top right corner of the image */
  .imgcard {
    border-radius: 20px;
    border: 2px solid #BAB2A3;
    width: 300px; /* Set the width */
    height: 250px; /* Set the height to the same value for a square aspect ratio */
    object-fit: cover; /* Ensure the entire image is visible within the fixed dimensions */
    padding: 5px;  
  }
  
    @media only screen and (max-width: 600px) {
    .card {
        flex-direction: column;
    }
}


  /* -------------------Image Carousel---------------------- */
  * {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 650px;
  border-radius: 20px;
  border: 10px solid white;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev {
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 0; /* Align the "prev" button to the left */
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 3px 0 0 3px; /* Adjust border radius for "prev" button */
    user-select: none;
  }
  
  .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 0; /* Align the "next" button to the right */
    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; /* Adjust border radius for "next" button */
    user-select: none;
  }
  

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: #3C7042;
}

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

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.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}
}