/*
@import url("https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,800");
*/

h1 {
    font-weight: 300;
    font-size: 72px;
    margin-bottom: 100px;
}

h2 {
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 150px;
    color: white;
    background: #000;
    display: inline-block;
    padding: 5px 15px;
}

.gallery,
.gallery2 {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.gallery__item {
    width: 100px;
    height: 100px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    margin: 3px;
}

.gallery__item img {
    min-width: 100%;
    max-height: 100%;
    object-fit: cover;
    cursor: pointer;
    margin: auto;
    filter: grayscale(100%);
    transition: .3s all ease-in-out;
}

.gallery__item img:hover {
    filter: grayscale(0);
}
