﻿.picGallery {
    position: relative;
    z-index: auto;
    /*margin: 10px 50px;
    padding: 20px;*/
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

    .picGallery img {
        transition: 1s;
        /*padding:15px;*/
        margin-bottom: 20px;
        width: 300px;
        border: 15px solid #f0f0f0;
        height:300px;
    }

        .picGallery img:hover {
            filter: grayscale(100%);
            transform: scale(1.1);
        }

    .picGallery a {
        padding: 5px;
    }

.smallImg {
    /* max-width:150px;
            height:150px;*/
}

.MultimediaTitle {
    margin: 0;
    padding: 5px;
    font-family: 'Times New Roman', Times, serif;
    line-height: 36px;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    border: 10px solid #f6f6f6;
    background-color: #f0f0f0;
}
.galleryButton {
    padding: 10px 20px;
    font-size: 18px;
    background: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

button.ActiveButton {
    background: #B32735;
    color: #fff;
    border: none;
}

figcaption {
    color: black;
    background-color: #fff;
    font-family: 'Times New Roman', Times, serif;
    line-height: 36px;
    font-size: 20px;
    width: 300px;
}
}