*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background-color: rgb(245, 245, 245);
    font-family: 'Poppins', sans-serif;
    height: 100%;
}
 
.parallax {
    /* The image used */
    background-image: url("assets/kemenag.jpg");
  
    /* Set a specific height */
    height: 500px;
  
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  
    /* Additional styling */
    position: relative;
  }
  
  .content {
    height: calc(100vh - 500px); /* Adjust based on the parallax section height */
    background-color: black;
    color: white;
    text-align: center;
    padding: 20px;
  }
  
  .bg-glass-bg {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
  }