.slideshow {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.slideshow .content {
    display: flex;
}

.slideshow .content .slider-content {
    display: flex;
    justify-content: space-around;
}

.slideshow .content .slider-content figure {
    margin: 20px;
    width: 30%; /* Adjust the width to fit three pictures */
    border: 5px solid #fff; /* White border */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Shadow effect */
    overflow: hidden; /* Hide overflow */
    transition: transform 0.3s ease; /* Add transition effect */
    position: relative; /* Position for hover effect */
}

.slideshow .content .slider-content figure:hover {
    transform: scale(1.05); /* Scale up on hover */
}

.slideshow .content .slider-content img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.slideshow .content .slider-content figcaption {
    position: absolute; /* Position text over image */
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black background */
    color: #fff;
    text-align: center;
}
.styled-link {
  display: inline-block;
  text-decoration: none;
  padding: 10px 20px;
  background-color: #3498db;
  color: #fff;
  border-radius: 5px;
  font-family: Arial, sans-serif;
  transition: background-color 0.3s ease;
}

.styled-link:hover {
  background-color: #2980b9;
}