
*{
  margin: 0;
  padding: 0;
}



.banner-area{
  background-image: url('Wildlife-Photography/Grizzly\ fishing_Watermarked.jpg');
  background-position: center;
  background-size:cover ;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
  margin: auto;
  
}



/* Navbar end */
.banner-text{
position: absolute;
top: 62%;
left: 0%;
width: 60%;
/* height: 300px; */
/* margin: 30% 30%; */
text-align: center;
  
}

.banner-text h1{
  text-align: center;
  color:rgb(253, 253, 253);    
  background: #1c1b1b;
filter: alpha(opacity=100);
/* IE */
-moz-opacity: 0.6;
/* Mozilla */
opacity: 0.7;
  font-size: 5rem;
  font-family: 'poppins' , sans-serif;
  margin: 10px;
  padding: 10px;
  border-radius: 5px;
}
.banner-text p{
  color: #fff;
  font-size: 18px;
  background: #1b1b1b;
filter: alpha(opacity=100);
/* IE */
-moz-opacity: 0.6;
/* Mozilla */
opacity: 0.7;
margin: 10px;
padding: 10px;
border-radius: 5px;
}
.banner-text a{
  border: 1px solid #fff;
  padding: 10px 25px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 20px;
  display: inline-block;
  color: #fff;
}
.banner-text a:hover{
  background-color: white;
  color: rgba(68, 25, 109, 0.623);
  font-weight: bold;
}
.r{
background-color: rgb(62, 61, 61);
}
.heading {
  text-align: center;
  font-size: 3.0em;
  letter-spacing: 8px;
  padding: 20px;
  color: rgb(248, 247, 247);
  
}

.gallery-image {
padding: 10px;
display: flex;
flex-wrap: wrap;
justify-content: center;
}

.gallery-image img {
height: 100%;
width: 100%;
object-fit: cover;
transform: scale(1.0);
transition: transform 0.4s ease;
}

.img-box {
box-sizing: content-box;
margin: 10px;
height: 250px;
width: 350px;
overflow: hidden;
display: inline-block;
color: white;
position: relative;
background-color: white;
border-radius: 5px;
}

.caption {
position: absolute;
bottom: 5px;
left: 20px;
opacity: 0.0;
transition: transform 0.3s ease, opacity 0.3s ease;
}

.transparent-box {
height: 100%;
width: 100%;
background-color:rgba(0, 0, 0, 0);
position: absolute;
top: 0;
left: 0;
transition: background-color 0.3s ease;
}

.img-box:hover img { 
transform: scale(1.1);
}

.img-box:hover .transparent-box {
background-color:rgba(0, 0, 0, 0.5);
}

.img-box:hover .caption {
transform: translateY(-20px);
opacity: 1.0;
}

.img-box:hover {
cursor: pointer;
}

.caption > p:nth-child(2) {
font-size: 0.8em;
}

.opacity-low {
opacity: 0.5;
}

/* footer */
footer{
position: relative;
  bottom: 0;
}

