@charset "utf-8";

body, html {
  	height: 100%;
}


/*Oldal tetején háttérkép*/
.parallax-top{
  	/*background-image: url('../images/top/divinus-romai-galeria-top.webp');
  	background-attachment: fixed;
  	background-position: center;
  	background-repeat: no-repeat;
  	background-size: cover;
	*/
	box-shadow: inset 0 0 0 1000px rgba(255,255,255,0);
}


.navbar-light{
	background-color: rgba(0, 0, 0, 0.65)!important;
	margin: 25px 80px 0px 80px;
	border-radius: 5px;
}


.kepgaleria{
	background-color:#ffffff;
	padding: 0;
	margin-bottom: 20px;
}
.kepgaleria .imgkepgaleria{
	height:200px;
	/*width: 100%;*/
	overflow: hidden;
	padding: 10px 0px 10px 0px;
	margin: 0;
}
.kepgaleria h2{
	font-size:25px;
	padding:40px 10px 0px 10px;
	color: #D2B96D;
}
.kepgaleria p{
	font-size:20px;
	padding:5px 10px 5px 10px;
	color: #000000;
}




.no-padding{
	padding: 0px;
}
.row{
	border:0px;
	margin-right:0;
	margin-left:0;
	max-width:100%;
}


.thumbnail {
  position: relative;
}
.image-container {
  position: relative;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
  box-sizing: border-box; /* Új sor */
  padding: 0; /* Új sor */
  margin: 0; /* Új sor */
}
.image-container:hover .overlay {
  opacity: 1;
}