 /* index.css */
 body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
  }
  
  header {
    background-color: #73b6ed;
    color: white;
    padding: 10px 0;
    text-align: center;
  }
  
  header h1 {
    margin: 0;
  }
  

  
  main {
    padding: 15px;
    background-color: #fff;
    margin-top: 10px;
  }
  
  section {
    margin-bottom: 20px;
  }
  
  footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 0px 0;
    position: absolute;
    bottom: 0;
    width: 100%;
  }
  .image{
    width: 100%;
    height:auto;
  }
  
  /* Add a class for the 'I want to be saved' link to make it stand out */
  nav ul li a.saved {
    background-color: #28a745;
    color: white;
  }
  
  /* Responsive design for mobile devices */
  @media (max-width: 600px) {
    nav ul li {
      float: none;
    }
  }
  .image-container {
    position: relative;
    width: 100%; /* or the width of your image */
    height: auto; /* or the height you want */
}

.image {
    width: 100%;
    height: auto; /* or set a fixed height if required */
    display: block; /* remove space below the image */
}

.white-overlay {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    bottom: -210px;
    background: rgba(255, 255, 255, 0.6); /* white with transparency */
    z-index: 1; /* above the image, below the text */
}

.slideshow-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2; /* above the white overlay */
    width: 100%;
    text-align: center;
}

/* ... rest of your CSS ... */

/* Adjustments for text slide animations and positioning */

.mySlides {
    display: none;
    position: relative; /* adjusted from absolute */
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.text {
    font-size: 115px;
    color: #333;
    display: inline-block;
    margin: 0; /* adjust as needed */
    font-weight: bold;
    z-index: 2;
}

.call-to-action {
  padding: 20px 20px;
  background-color: #28a745; /* Green background */
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  outline: none;
  font-size: 16px;
  margin-top: 20px; /* Space from the text above */
  z-index: 2; /* Ensure it's above the image and overlay */
  transition: background-color 0.3s ease; /* Smooth transition for hover effect */
  font-weight: bold;
}

.call-to-action:hover {
  background-color: #218838; /* Darker green on hover */
}

.highlight-text {
    position: absolute;
    top: 50%; /* Adjust vertical positioning */
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3em; /* Make the text larger */
    color: red;
    font-weight: bold;
    z-index: 2; /* Place above the overlay */
    text-align: center;
}
.image2 {
    position: absolute;
    top: 2.5px; /* Adjust vertical positioning within the header */
    left: 20px; /* Adjust horizontal positioning within the header */
    width: 10%; /* Adjust the width as needed */
    height: auto;
}
.facebook-link {
    position: absolute;
    top: 10px; /* Position vertically within the header */
    left: 1800px; /* Position horizontally on the left side */
    z-index: 2; /* Ensure it appears above other elements */
}

.facebook-image {
    width: 55px; /* Adjust size as needed */
    height: auto;
}
