body {
  font-family: 'Source Sans Pro', sans-serif;
}
.background-jumbotron {
  position: relative; /* Tambahkan posisi relatif pada elemen yang akan dijadikan latar belakang */
  height: 100vh;
}

.background-jumbotron::before {
  content: "";
  background-image: url(../../images/bg.jpg);
  background-size: cover;
  filter: brightness(0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.jumbotron {
  background: none;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.center-vertical {
  display: flex;
  align-items: center;
  height: 100vh;
}
/* Bagian "About Us" */
.about {
  padding: 100px 0;
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.about h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

.about p {
  color: #f1f1f1;
  font-size: 18px;
  line-height: 1.8;
}

.navbar ul li a:hover{
  text-decoration: underline;
  color: #525252;
}



/* Gaya untuk hp dan tablet */
@media (max-width: 768px) {
  .daftar {
    margin-top: 5px;
  }
}
