@charset "utf-8";
/* CSS Document */

.container {
	margin: 10px;
	width: 700px;
	display: grid;
	grid-template-columns: 50% 50%;
    grid-gap:5px;
}

	
.gallery-item{
    width:100%;
    height:100%;
    position:relative;
    height: 280px;
}

.gallery-item .image{
    width:100%;
    height:100%;
/*    overflow:hidden;*/
}

.gallery-item .image img{
    width:100%;
    height:100%;
    object-fit: cover;
    object-position:50% 50%;
    cursor:pointer;
    transition:.5s ease-in-out;
	border-radius: 15px;
}
/*
.gallery-item:hover .image img{
    transform:scale(1.5);
}*/


.gallery-item .Titletext {
    font-family: Verdana;
	font-size: 20px;
	color: #008000 ;
	text-align: center;
	font-weight: normal;
 
}

.gallery-item .Desctext{
    opacity:0;
    position:absolute;
    
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    color:#fff;
    font-size:15px;
    pointer-events:none;
    z-index:4;
/*    transition: .3s ease-in-out;
    -webkit-backdrop-filter: blur(5px) saturate(1.8);
    backdrop-filter: blur(5px) saturate(1.8); 
*/
}

.gallery-item:hover .Desctext{
    opacity:1;
    text-align: center;
    animation: move-down .3s linear;
    padding:1em;
    width:90%;
}	
/**/

.image {
    float: center; 
    padding-right: 10px;
    padding-left: 5px;
    padding-bottom: 5px;
    padding-top: 5px ;

    ;
}
.img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: scale-down;
}


/*
.el1 {

    background: rgba(266, 154, 72, 0.5);
}
.el2 {	
    border-top: 1px solid #1f1414;
    border-bottom: 1px solid #1f1414;
    background: rgba(255, 0, 0, 0.5);
}
.el3 {
    border-top: 1px solid #1f1414;
    border-bottom: 1px solid #1f1414;
}
.el4 {
    border-top: 1px solid #1f1414;
    border-bottom: 1px solid #1f1414;

}
.el5 {
    border-top: 1px solid #1f1414;
    border-bottom: 1px solid #1f1414;

}
.el6 {

    background: rgba(255, 0, 0, 0.5);
}
.el7 {
    border-top: 1px solid #1f1414;
    border-bottom: 1px solid #1f1414;
}
.el8 {
    border-top: 1px solid #1f1414;
    border-bottom: 1px solid #1f1414;
}

.el1 {
/*	background: rgba(266, 154, 72, 0.5);
 	grid-column-start: 1;
	grid-column-end: -1;
}
.el2 {
	background: rgba(255, 0, 0, 0.5);
 		
}
.el3 {
	background: rgba(0, 128, 0, 0.5);
}
.el4 {
	background: rgba(266, 154, 72, 0.5);

}
.el5 {
	background: rgba(255, 0, 0, 0.5);

}
.el6 {
	background: rgba(0, 128, 0, 0.5);
}
.el7 {
	background: rgba(266, 154, 72, 0.5);
}*/
