header{
    background-image: url(../../images/gallery-hero.jpg);
}

.images{
    margin-top: 50px;
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 40px 20px;
    justify-content: space-evenly;
}

.picture{
    position: relative;
    width: 350px;
    height: 300px;
    border-radius: 10px;
}

.image-box{
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.image-box:hover{
    cursor: pointer;
}

.image-box img{
    border-radius: 10px;
    width: 350px;
    height: 300px;
    transition: all .5s;
}

.image-box:hover img{
    transform: scale(1.2);
}

.transparent-box{
    position: absolute;
    border-radius: 10px;
    top: 0;
    left: 0;
    width: 350px;
    height: 300px;
    background-color:rgba(0, 0, 0, 0);
    transition: background-color 0.5s ease;
}

.transparent-box .floor{
    position: absolute;
    bottom: 0;
    left: 25px;
    color: transparent;
    font-size: 1.5rem;
    font-weight: 500;
    transition: all .5s;
}

.image-box:hover .transparent-box{
    background-color: rgba(0, 0, 0, .5);
}

.image-box:hover .floor{
    color: #fff;
    transform: translateY(-20px);
}

.transparent-box .description-text{
    font-size: 1.2rem;
    opacity: .6;
}







