@media (min-width: 577px) {
    #logoDesktop{
        border: none;
    }
    #navMenu > a:last-child{
        border-bottom: 3px solid #B7D5BD;
    }
    .photosContainer > img{
        height: 200px;
        object-fit: contain;
        margin: 1%;
        border-radius: 10px;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        transition: .3s;
        cursor: pointer;
    }
    .photosContainer > img:hover{
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }
    .photosContainer{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .popUpPhoto{
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        position: fixed;
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 11;
    }
    .popUpPhoto > img{
        height: 80%;
        border-radius: 10px;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        cursor: pointer;
    }
}

@media (max-width: 576px) {
    #logoDesktop{
        border: none;
    }
    #navMenu > a:last-child{
        border-bottom: 3px solid #B7D5BD;
    }
    .photosContainer > img{
        height: 200px;
        object-fit: contain;
        margin: 5%;
        border-radius: 10px;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        transition: .3s;
        cursor: pointer;
    }
    .photosContainer > img:hover{
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }
    .photosContainer{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .popUpPhoto{
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        position: fixed;
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 11;
    }
    .popUpPhoto > img{
        border-radius: 10px;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        cursor: pointer;
        width: 90%;
        height: auto;
    }
}