header{
    position: relative;
    background-color: rgba(0, 0, 0,.6);
}
header>img{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    object-fit: cover;
    

}
.word{
    margin-top: 60px;
}
.intro{
    position: relative; 
}
.intro::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: #fff;
}
.intro::before{
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50% ;   
}
.search-btn{
display: block;
padding: 10px 30px;
border-radius: 5px;
border: none;
outline: none;
cursor: pointer;
background: black;
color: #fff;
margin: auto;
font-family: "Playfair Display", serif;
}

/* gallery */

.gallery {
    width: 100%;
    padding: 40px;
    background: #fff;
    columns: 3;
    column-gap: 20px;
    
}

.image-container{
    position: relative;
    display: inline-block;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 5px;
    cursor: pointer;
    background: #f9f9f9;
    transition: transform 0.3s ease;
    background-color: rgba(0, 0, 0,.6);
}
.gallery-img:hover{
    transform: scale(1.05);
}

.user-name{
    display: inline;
    position: absolute;
    bottom: 15px;
    left: 60px;
    color: #fff;
    font-family: "Playfair Display", serif;
}
.user-img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    bottom: 29px;
    left: 8px;
    position: absolute;
    z-index: 1;
    border: 2px solid white;
    object-fit: cover;
    
}
.download-btn{
    text-decoration: none;
    background: black;
    color: white;
    padding: 5px;
    border-radius: 5px;
    transition: 0.3s ease;
    text-align: center;
    display: inline-block;
    /* margin-top: 5px; */
    position: absolute;
    z-index: 3;
    bottom: 25px;
    right: 5px;
    /* border: 2px solid yellow; */
    
}
@media screen and (max-width: 982px) {
    .gallery {
        width: 100%;
        padding: 40px;
        background: #fff;
        columns: 2;
        column-gap: 20px;
        
    }
    
}

@media screen and (max-width: 768px) {
    .gallery {
        width: 100%;
        padding: 40px;
        background: #fff;
        column-gap: 20px;
        columns: 1;
    }
    
}