body {
    font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  overflow: hidden;
  }
  #video-background {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;}
  
  .container {
    text-align: center;
    color: #fff;
  }
  
  h1 {
    font-size: 45px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  p {
    font-size: 25px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }
  
  img {
    max-width: 250px;
  max-height: 150px;
  width: auto;
  height: auto;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
  }
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Warna overlay */
    z-index: -1;
  }
  @media (max-width: 768px) {
    #video-background {
      width: 100%;
      height: auto;
      top: initial;
      left: initial;
      transform: none;
    }
  }
  