body {
    font-family: 'Roboto_Thin';
}

#background {
    height: 100%;
    background-image: url(/img/gallery/GalleryBg1.webp);
    background-size: cover;
}

#filter {
    width: 100%;
    height: 100%;
    /*background-image: url(/img/const/Black_Filter.png);*/
    background-color: rgba(0, 0, 0, 0.6);
}

#Title {
    width: 100%;
    position: absolute;
    bottom: 50%;
    transform: translateY(75%);
    z-index: 5;
    font-size: 800%;
    text-align: center;
    color: white;
    z-index: 0;
    /*letter-spacing: 0.1em ;*/
}

#show_more {
    color: white;
    text-align: center;
    position: absolute;
    left: 30%;
    bottom: 5%;
    z-index: 0;
    letter-spacing: 0.1em;
    animation: MoveUpDown 3000ms ease-out infinite;
    padding-bottom: 10px;
}

@keyframes MoveUpDown {
    0%,
    15%,
    45%,
    75%,
    100% {
        bottom: 35px;
    }
    30%,
    60% {
        bottom: 55px;
    }
}

#freccia {
    width: 15px;
    position: relative;
    top: 3px;
}

#more:link {
    text-decoration: none;
}

#more:visited {
    text-decoration: none;
    color: white;
}

h3 {
    transition-duration: 300ms;
    cursor: pointer;
    width: 40%;
    margin: auto;
}

h3:hover {
    transform: scale(1.1);
}

#sub_title {
    text-align: center;
    font-size: 250%;
    font-weight: bold;
    margin: 1.5em;
    margin-bottom: 0;
}

#description {
    margin-top: 0;
    text-align: center;
}

.clearfix {
    clear: both;
    overflow: visible;
}

#container {
    width: 80%;
    display: flex;
    justify-content: center;
    margin: auto;
    flex-wrap: wrap;
    z-index: 0;
    overflow: visible !important;
}

.image {
    width: 20%;
    margin: 1.5% 0.7%;
    min-width: 200px;
    z-index: 0;
    transition-duration: 500ms;
    transition-timing-function: ease-in-out;
    cursor: pointer;
}

.image:hover {
    transform: scale(1.1);
}