* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'custom font', 'calist', 'Arial Narrow', Arial, sans-serif, 'franlin Gothic Medium';
    background: linear-gradient(135deg, #2c0050, #530070);
  }
  
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .navigation {
    margin-bottom: 20px;
    text-align: center;
  }
  
  .navigation img {
    display: inline-block;
    margin-right: 10px;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .navigation img:hover {
    background-color: #555;
  }
  
  .navigation img:focus {
    outline: 2px solid rgb(145, 255, 0);
  }
  
  .section {
    display: none;
    padding: 20px;
    background-color: #7eaff8;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .active {
    display: block;
  }
  
  h2 {
    margin-bottom: 10px;
    text-align: center;
    color: #ffffff; /* Text color */
    -webkit-text-stroke: 1.5px #000; /* Border-like outline for webkit browsers */
    text-stroke: 3px #000; /* Border-like outline for other browsers */
    -webkit-text-stroke-color: #000000; /* Border color for webkit browsers */
    padding: 10px; /* Add padding to increase space between text and border */
    font-size: 48px; /* Increase font size */
  }
  
  p {
    line-height: 1.5;
    text-align: center;
    color: #ffffff; /* Text color */
    -webkit-text-stroke: 1.5px #000000; /* Border-like outline for webkit browsers */
    text-stroke: 3px #000000; /* Border-like outline for other browsers */
    -webkit-text-stroke-color: #000000; /* Border color for webkit browsers */
    padding: 10px; /* Add padding to increase space between text and border */
    font-size: 48px; /* Increase font size with 'px' */
  }
  
  
  .image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
  }
  
  .image-gallery img {
    max-width: 400px;
    max-height: 400px;
    object-fit: cover;
    margin: 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.3s ease;
  }
  
  .image-gallery img:hover {
    transform: scale(1.1);
  }
  
  .lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  
  .lightbox.active {
    opacity: 1;
    pointer-events: auto;
  }
  
  .lightbox img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 5px;
  }
  /* Add styles for the navigation items */
.nav-item {
    padding: 10px;
    border: 2px solid transparent; /* Start with a transparent border */
    border-radius: 5px;
    margin-right: 10px;
    text-decoration: none;
    color: white;
    transition: border-color 0.3s ease;
  }
  
/* Add styles for the navigation items */
.nav-item {
  padding: 10px;
  border: 2px solid transparent; /* Start with a transparent border */
  border-radius: 5px;
  margin-right: 10px;
  text-decoration: none;
  transition: border-color 0.3s ease;
}

.nav-item {
    padding: 10px;
    border-radius: 5px;
    margin-right: 10px;
    text-decoration: none;
    transition: border-color 0.3s ease;
    display: inline-block;
    font-size: px;
    text-align: center;
    line-height: 1.5;
    color: #ffdaac; /* Text color */
    -webkit-text-stroke: 1.5px #000000; /* Border-like outline for webkit browsers */
    text-stroke: 3px #000000; /* Border-like outline for other browsers */
    -webkit-text-stroke-color: #2600ff; /* Border color for webkit browsers */
  }
  
  /* Change border color on hover */
  .nav-item:hover {
    border-color: #ffffff; /* Change border color on hover */
  }
  
  .back-home {
    display: inline-block;
    padding: 8px 16px;
    background-color: #ffffff;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  
  .back-home:hover {
    background-color: #ffffff;
  }

