body{
    background-color: #F0FDFF;
    font-family: "Poppins", serif;
  }
  .hero {
    position: relative;
    background-image: url('../images/gallery.jpg');
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
          to bottom, 
          rgba(0, 0, 0, 0), 
          rgba(0, 0, 0, 1)
      );
  }
  
  .hero-cont,
  .cover {
    position: relative;
    color: #ffffff;
    padding: 300px 100px 20px !important;
    text-align: center;
  }
  
  .hero-cont h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .hero-cont p {
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
  }

.album-section {
    padding: 50px 100px;
    justify-content: center;
    align-items: center;
}
.content {
    position: relative;
    height: 600px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    display: flex;
    margin-bottom: 50px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
#cont1{
    background-image: url('../images/img1.jpg');
}
#cont2{
    background-image: url('../images/img2.png') ;
}
#cont3{
    background-image: url('../images/img3.png');
}

p{
    font-size: 18px;
}
h4{
    font-size: 30px;
}
.view {
    display: inline-block;
    padding: 10px 20px;
    background-color: #38A4C1;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.view:hover {
    background-color: transparent;
    border: 1px solid #38A4C1;
    color: #38A4C1;
    text-decoration: none;
}

/* Responsive layout */
@media (max-width: 768px) {
    .hero-cont,
      .cover {
        padding: 20px 40px !important;
    }
      
    .hero-cont h1 {
        font-size: 24px;
    } 
    .hero-cont p {
        font-size: 18px;
    }
    
    .album-section {
        padding: 30px 40px;
    }
    .content {
        height: 400px;
      }
    p{
        font-size: 16px;
    }
    h4{
        font-size: 22px;
    }
}
@media (max-width: 600px) {
  .hero {
    min-height: 60vh;
}
.hero-cont{
    padding: 100px 20px !important;
    width: 100%!important;
  }
}