.title-photo-container{
    max-height: 30vh;
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    margin-bottom: 6px;

    background-color: rgb(78, 78, 78);
    position: relative;
    text-align: center;
}
.title-photo{
    width: 100%;
    
}
.title-photo-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: justify;

    max-width: 90%;
    font-family: Courier, monospace;
    font-weight: normal;
    letter-spacing: 0.6em;
    color: rgb(226, 226, 226);
    background-color: rgba(46, 46, 46, 0.699);
    border-radius: 10px;
    font-size: 50pt;
    padding-left: 30px;
    padding-right: 10px;
}
@media (max-aspect-ratio: 3/4){
    .title-photo-text{
        font-size: 20pt;
    }
}



.photo-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    padding: 10px;
}
.photo{
    height: auto;
    width: auto;
    max-height: 40vh;
    max-width: 100%;
    object-fit: contain;
    border-radius: 5px;
    transition: scale 0.3s, border-radius 0.3s;
    background-color: #000000;

    box-shadow: 5px 5px 15px #00000000;

    /* image faded until fully loaded */
    opacity: 0.1;
    -webkit-transition: all 1s ease; 
    -moz-transition: all 1s ease; 
    -ms-transition: all 1s ease; 
    -o-transition: all 1s ease; 
}
.photo:hover{
    scale: 1.05;
    border-radius: 0px;
}