body {
    background-color: white;
}
  
  header {
    background-color: white;
    border-bottom: 1px solid black;
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
  }
  nav {
    background-color:#ff8cb3;
    text-align: center;
    padding: 25px;
  }
  
  nav ul {
    list-style-type: none;
    margin: 0;
    padding: 25;
  }
  
  nav ul li {
    display: inline-block;
  }
  
  nav ul li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: black;
  }
  
  nav ul li a:hover {
    background-color: lightblue;
  }
  nav ul li a {
    display: block;
    padding: 20px 20px;
    text-decoration: none;
    color: #2a285d;
  }
  .logo {
    display: flex;
    align-items: center;
    padding: 10px;
    justify-content: center;
  }
  
  .logo img {
    max-width: 250px;
    height: auto;
  }
  h1 {
    font-size: 35px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    background-image: url('https://lirp.cdn-website.com/adb65d7c/dms3rep/multi/opt/HP-Slider-1-1728w.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 250px;
    }
h2 {
    font-size: 20px;
    font-weight: bold;
    color: #555;
    text-align: center;
  }
  
  h3 {
    font-size: 18px;
    font-weight: bold;
    color: #777;
    text-align: center;
  }
  h4{
    text-align: center;
    font-size: x-large  ;
  }
  .centered-image {
    text-align: center;
  }
  p{
    text-align: center;
    padding: 5px;
  }
  .container {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    margin-bottom: 25px;
  }
  
  .column {
    flex-basis: 30%;
    padding: 10px;
    text-align: center;
  }
  .column img {
    width: 75%;
    height: auto;
  }
  footer {
    background-color:#75c0e5;
    color: #fff;
    padding: 25px;
    text-align: center;
  }
  
  .footer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .footer-menu li {
    display: inline-block;
    margin-right: 10px;
  }
  
  .footer-menu li:last-child {
    margin-right: 0;
  }
  
  .footer-menu a {
    text-decoration: none;
    color: #fff;
  }
  
  .footer-menu a:hover {
    text-decoration: underline;
  }
  .gallery-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }

  .gallery-column {
    flex: 1;
    padding: 5px;
  }

  .gallery-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
  }

  .gallery-image:hover {
    transform: scale(1.1);
  }

  .gallery-caption {
    text-align: center;
    margin-top: 10px;
  }
  
  
  