body {
  margin: 0;
}

header {
  justify-content: space-between;
  margin: 20px auto;
}

h1 {
  text-align: center;
}

h2 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.25em;
}

p {
  font-size: 18px;
}

li {
  font-weight: bold;
}

.btn {
  margin: 20px auto;
  text-align: center;
}

.navbar-custom {
  background-color: #F4F6F6;
}

.btn-custom {
  border: 2px solid #ffffff;
  color: #000000;
  border-radius: 1.25rem;
}

.btn-custom:hover {
  /*background-color: #E22E68;*/
  color: #42c2f5;
}

.hero {
  max-width: 60%;
  height: auto;
}

.contact {
  margin: 12px auto;
}

.thumbnail {
    position: relative;
}

.caption {
    position: absolute;
    top: 45%;
    left: 0;
    width: 100%;
}

.image-container {
  position: relative;
}

.image-container img {
  transition: transform 0.5s ease;
}

.image-container img:hover {
  transform: translateX(10px); /* Adjust the value as desired */
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #333;
  overflow: hidden;
}

nav li {
  float: left;
}

nav a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Style for the current page */
nav a.current {
  background-color: #4CAF50; /* Green color, change as needed */
}

/* Hover effect */
nav a:hover {
  background-color: #ddd;
  color: black;
}
