.navbar {
    font-family: 'Shadows Into Light', cursive;
    background-color: #d6b26a;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: right;
  }
  
  .navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 24px;
  }
  
  .navbar a:hover {
    background-color: #ddd;
    color: black;
  }
  
  .navbar a.active {
    background-color: #2a2a2a;
    color: white;
  }
  
  .navbaricon {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
  }
  
  footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #d6b26a;
    padding: 16px;
  }
  
  .social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }
  
  .social-icons a {
    display: inline-block;
    margin: 0 8px;
    color: #555;
    font-size: 24px;
  }
  
  .social-icons a:hover {
    color: #fff;
  }
  
  footer p {
    font-size: 12px;
    color: #555;
    margin: 0;
  }
  
  .slideshow-container {
    width: 30%;
     margin: 0 auto; /* Center the container horizontally */
     margin-top:80px; 
    }
    
    a {
      color: white;
    }
  
  @media only screen and (max-width: 768px) {
   
    a {
        color: white;
      }
      

    .navbar {
      display: none;
    }
    
    .navbaricon {
        display: block;
        position: fixed;
        top: 16px;
        right: 16px;
        background-color: #d6b26a;
        padding: 10px;
        border-radius: 35%;
        cursor: pointer;
        z-index: 1;
      }
      
    
    .navbar.responsive {
      position: relative;
      display: block;
      width: 100%;
    }
  
    .navbar.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
  
    .navbar.responsive a.active {
      background-color: #2a2a2a;
      color: white;
    }
  
    .navbar.responsive a:hover {
      background-color: #ddd;
      color: black;
    }
  }