body{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: rgb(0, 0, 0);
    color: rgb(47, 47, 47);
    margin: 5px;
    font-size: 16px;
}
.modal {
	display: none;
	position: fixed;
	z-index: 1;
	padding-top: 100px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.9);
  }
  
  .modal img {
	display: block;
	margin: 0 auto;
	max-width: 50%;
	max-height: 90%;
  }
  
  .close {
	position: relative;
	top: 20px;
	right: 30px;
	font-size: 50px;
	font-weight: bold;
	color: #fff;
	cursor: pointer;
  }
a{
    text-decoration: none;
}
h1{
    text-align: center;
}
img{
    width: 100%;
}
.w-100{
    width: 100%;
}
.h-100{
    height: 100%;
}
.overflow{
    overflow: hidden;
}

#feed-container{
    background-color: rgb(0, 0, 0);
    margin: 5rem 0;
    width: 100%;
    overflow: hidden;
}

.container-galery{
    width: 100%;
    overflow: hidden;
    scroll-behavior: smooth;
}

.main-galery{
    width: 100%;
    display: grid;
    align-items: center;
    position: relative;
}

.galery{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-row-gap: 20px;
    grid-column-gap: 20px;
}

.image{
    min-width: 20%;
    height: 275px;
    position: relative;
}
.image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.image:hover .opacity-hover{
    width: 100%;
}
.caption{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: translateY(300px);
    transition: transform  100ms linear;
}
.caption p{
    color: white;
    width: 80%;
}
.opacity-hover{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    transition: background-color 300ms linear;
}
.opacity-hover:hover{
    background-color: rgba(2, 2, 2, 0.8);
}
.opacity-hover:hover .caption{
    transform: translateY(0px);
}
