﻿* {
    box-sizing: border-box;
}

#gallery {
    width: 1200px;
    margin: 20px auto;
}

.gallery-item {

    position: relative;
    margin-right: 25px;


}

.gallery-container {
    width: 25%;
    float: left;
}

.gallery-item img {
    border-radius: 7px;
    width: 100%;
    height: 200px;
    transition: opacity 0.4s;
    object-fit:fill;
}

.gallery-item img:hover {
    opacity: 0.9;
}

a {
    text-decoration: none;
}

.description {
    text-align: center;
    padding: 0px;
    position: absolute;
    bottom: 0px;
    color: white;
    font:700;
    font-family:Tahoma;
    font-style:oblique;
    font-weight:bold;

}