main {
  padding: 20px 0;
}

.slider-container {
  width: 80%;
  margin: 50px auto;
  overflow: hidden;
  position: relative;
}

.slider {
  display: flex;
  transition: transform 0.3s ease;
}

@media (min-width: 769px) {
  .slider {
    margin-top: 20px;
  }
}

.slide {
  flex: 0 0 100%;
  height: 300px;
  padding: 20px;
  box-sizing: border-box;
  background-color: #f0f0f0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #555;
  z-index: 1;
  transition: color 0.2s;
}

.arrow-btn:hover {
  color: #333;
}

.left {
  left: 10px;
}

.right {
  right: 10px;
}

.circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  margin: 5px;
}

.active {
  background-color: rgba(0, 0, 0, 0.7);
}

.slider-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.content-container {
  margin-top: 20px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  background-color: #f9f9f9;
}

hr {
  margin: 10px 0;
  border: none;
  border-top: 1px solid #ddd;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* justify-content: center; */
  /* align-items: center; */
}

.gallery img {
  /* max-width: 100px; */
  max-width: 400px;
  max-height:400px;
  margin: 5px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.location {
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
}

.location a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.2s;
}

.location a:hover {
  color: #0056b3;
}

/* New styles for picture names */
.picture-name {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 5px 10px;
  border-radius: 5px;
  position: absolute;
  top: 10px;
  transition: color 0.2s, background-color 0.2s;
}

.left .picture-name {
  left: 10px;
}

.right .picture-name {
  right: 10px;
}

/* Hover effect for picture names */
.left:hover .picture-name {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.8);
}

.right:hover .picture-name {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.8);
}

.location a {
  cursor: pointer;
}