
  body {
    font-family: "Helvetica", sans-serif; 
    background-color: rgb(192, 155, 131); 
    margin: 0;
    padding: 0;
  }
  
  .container {
    width: calc(100% - 40px); 
    max-width: 800px; 
    margin: 0 auto;
    padding: 20px;
  }
  
  .navbar {
    background-color: rgb(172, 139, 99);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    line-height: 1; 
  }
  
  .nav-links ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
  }
  
  .nav-links ul li {
    margin-left: 20px; 
  }
  
  .nav-links ul li {
    margin-left: auto; 
  }
  
  .nav-links ul li a {
    color: #523816;
    text-decoration: none;
    font-size: 18px; 
    transition: color 0.3s ease;
  }
  
  .nav-links ul li a:hover {
    color: #3d2918; 
  }
  
  .content {
    text-align: center;
  }
  
  .content h1 {
    font-size: 36px; 
  }
  
  .content p {
    font-size: 20px; 
  }
  
  .image-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
  
  .image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 200px; 
  }
  
  .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .overlay span {
    color: #ffffff;
    font-size: 18px;
  }
  
  .image-wrapper:hover .overlay {
    opacity: 1;
  }
  
  .image-wrapper-rounded {
    text-align: center;
    border-radius: 10px; 
    overflow: hidden; 
    margin: 20px auto;
    max-width: 80%; 
  }
  
  .image-wrapper-rounded img {
    width: 100%; 
    height: auto; 
  }
  

  