/* starting reset */
html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'lato', sans-serif;
}

/* Navigatation */
nav {
    width:100%;
    display: flex;
    justify-content: center;

    /* add a background gradient */
    background-image: linear-gradient(to right, teal, lightseagreen);

}

nav ul {
display: flex;
}
nav ul li {
    margin: 8px 24px;
    list-style: none;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
}

/* hero */
.hero {
    width: 100%;
    height: 90%;

    /* add aa bckground image */
    background-image: url('../resizedimages/image7.jpg');

    background-size: cover;

    /* move text to center */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Travel section */

.dog {
    height: 100%;
    display: flex;
}

.dogImg {
    background-image: url('../resizedimages/Image1.1.jpg');
    background-size: cover;

    /* add width and hight via flexbox */
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;

}

.button {
    background-color: #f5a4c8;
    border: none;
    border-radius: 12px;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    
  }

.text {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
}

    
      .row {
    
        display: flex;
        width: 100%;
        height: 400px;
        margin: 1rem;
    
      }
    
    .thumbnail {
    
    width: 100%;
    height: 100%;
    
    /* backgroud */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    
    }
      
      .gallery {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        margin: 20px;
      }
      
      .column {
        flex: 25%;
        max-width: 25%;
        padding: 0 4px;
      }
      
      .column img {
        margin-top: 8px;
        vertical-align: middle;
        width: 100%;
      }
      
      .caption {
        margin-top: 10px;
        text-align: center;
        font-size: 14px;
        color: #666;
      }
      
      @media (max-width: 768px) {
        .gallery-item {
          flex: 1 0 100%; /* Full width on smaller screens */
          max-width: 100%;
        }
      }


    
    /* #img1 {
    
    background-image: url('../resizedimages/image1.jpg');

      }
    
    #img2 {
    
    background-image: url('../resizedimages/image2.jpg');
        
          }
    
    #img3 {
    
    background-image: url('../resizedimages/image3.jpg');
        
          }
    
    #img4 {
    
    background-image: url('../resizedimages/image4.jpg');
        
          }
          
    #img5 {
    
    background-image: url('../resizedimages/image5.jpg');
            
        }
    
    #img6 {
    
    background-image: url('../resizedimages/image6.jpg');
                
         }
    
    #img7 {
    
    background-image: url('../resizedimages/image7.jpg');
                        
         }

    #img8 {
    
    background-image: url('../resizedimages/image8.jpg');
                        
         }
         
    #img9 {
    
    background-image: url('../resizedimages/image9.jpg');
                                
        }
    
    #img10 {
    
    background-image: url('../resizedimages/image10.jpg');
                                        
        }

    #img11 {
    
    background-image: url('../resizedimages/image11.jpg');
                                                
     }
    
     #img12 {
    
        background-image: url('../resizedimages/image12.jpg');
                                            
            } */

      /* .gallery img {
    
    width: 100%;
    
      } */
