    body {
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
      background: url('../gbr/langit.jpg') no-repeat center center fixed;
      background-size: cover;
    }

    /* Kop lembaga */
    .kop-lembaga {
      text-align: center;
      padding: 20px;
      background: rgba(51, 83, 95, 0.8);
      font-size: 24px;
      font-weight: bold;
      color: rgb(253, 253, 253);
    }

    /* Widget kiri dan kanan */
    .widget {
      position: fixed;
      top: 100px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

    .widget.kiri {
      left: 150px;
    }

    .widget.kanan {
      right: 150px;
    }

    .menu-icon {
      width: 125px;
      height:125px;
      background-color: rgba(24, 24, 24, 0.418);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(250, 49, 49, 0.3);
      transition: transform 0.3s ease;
      cursor: pointer;
    }

    .menu-icon:hover {
      transform: scale(1.1) rotate(5deg);
    }

    .menu-icon img {
      width: 95%;
      height: 95%;
      object-fit: cover;
    }