body {
    background-image: linear-gradient(to bottom, rgb(230, 229, 229), rgb(124, 124, 124));
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.logo {
    color: black;
   
}
nav{
    width: 100%;
    display: flex;
    justify-content: center;
    background: pink;
}
nav ul {
    display: flex;
    
}
li{
    list-style-type: none;
    margin: 0.5rem 2.5rem;
    font-size: 20px;
    justify-content: center;
    
}
a {
    text-decoration: none;
    color: white;
    
}

.title {
    display: flex;
    justify-content: center;
    
    
}
h1 {
    font-family: "Playfair Display";
    font-size: 3.5rem;
    font-weight: 800;

    
}

h1 span {
    font-weight: 400;
}
img {
    width: 100%;
}

.photo-grid-container {
    column-count: 4;
    column-width: 300px;
    
}

.photo-grid-item {
    margin: 0 auto 20px;
    width: 100%;
}

.photo-grid-container .text{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.photo-grid-container .text h3 {
    font-size: 35px;
    font-weight: Bolder;
    border-bottom: 3px solid #222;
   
}


.photo-grid-container .text h3 span {
    font-weight: 100;
}




@media screen and (max-width: 768px) {

    .photo-grid-container {
        column-count: 2;
    }
    

}

@media screen and (max-width: 540px) {
    
    .photo-grid-container {
        column-count: 1;
    }

}