body {
    font-family: Arial, sans-serif;
    color: #93471e;
    background-image: url(./wall\ paper\ \(2\).jpeg);
    background-size: cover;
    background-repeat: no-repeat;
  
  }
    h2 {
  text-align: center;
  font-family: 'Times New Roman', Times, serif;
  font-size: 40px;
}


      .image-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
      }
      .image-container img {
    background-color: white;
    padding: 15px;
    width: 300px;
    height: 350px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-left: 30px;
      }

      .footer {
        background-color: rgb(111, 69, 41);
        color: #e0e0e0;
        font-size: 14px;
        padding: 40px 0;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        text-align: left;
    }
    
    .footer h3 {
        color: #ffffff;
        margin-bottom: 20px;
        font-family: 'Times New Roman', Times, serif;
    }
    
    .footer p, .footer a {
        color: #e0e0e0;
        font-family: Arial, sans-serif;
    }
    
    .footer a {
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .footer a:hover {
        color: #3498DB;
    }
    
    .footer-col-1, .footer-col-2, .footer-col-3, .footer-col-4 {
        min-width: 250px;
        margin-bottom: 20px;
        flex: 1;
    }
    
    .footer-col-2, .footer-col-3, .footer-col-4 {
        text-align: center;
    }
    
    .app-logo img {
        width: 100px;
        margin-top: 10px;
    }
    
    .social img {
        width: 30px;
        height: 30px;
        margin-right: 10px;
        transition: opacity 0.3s ease;
    }
    
    .social img:hover {
        opacity: 0.7;
    }
    
    ul {
        list-style-type: none;
        padding: 0;
    }
    
    @media (max-width: 768px) {
        .footer {
            flex-direction: column;
            text-align: center;
        }
        
        .footer-col-1, .footer-col-2, .footer-col-3, .footer-col-4 {
            margin-bottom: 20px;
        }
    }
    