    body {
      background-repeat: repeat-y;
      background-image: url('/sumberdaya/bg-index.webp');
      background-size: cover;
      background-position: center;
      margin: 0;
      padding: 0;
    }
    
    .hero {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      margin-top: -100px;
      font-family: 'Viga';
    }
    
    .hero-content {
      text-align: center;
      color: #fff;
      z-index: 1;
    }
    
    .hero-content h1 {
      -webkit-text-stroke: 1px white;
      color: crimson;
      font-size: 48px;
      margin-bottom: 20px;
      animation: fadeInDown 1s ease-in-out;
    }
    
    .hero-content p {
      -webkit-text-stroke: 0.5px black;
      font-size: 24px;
      margin-bottom: 40px;
      animation: fadeInUp 1s ease-in-out;
    }
    
    .hero-button {
      display: inline-block;
      padding: 5px 10px;
      font-size: 18px;
      background-color: crimson;
      color: #fff;
      border: none;
      border-radius: 4px;
      transition: background-color 0.3s ease;
      animation: fadeInUp 1s ease-in-out;
      text-decoration: none;
    }
    
    
    .hero-button:hover {
      background-color: darkred;
    }
    
    .animation-element {
      opacity: 0;
      transform: translateY(100px);
      transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    }
    
    .animation-element.animated {
      opacity: 1;
      transform: translateY(0);
    }
    
    @keyframes fadeInDown {
      0% {
        opacity: 0;
        transform: translateY(-50px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(50px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }
