@font-face {
    font-family: "foka1";
    src: url("font/FreeSans.ttf") format("truetype");
  }
  @font-face {
    font-family: "foka2";
    src: url("font/FreeSansBold.ttf") format("truetype");
  }
  @font-face {
    font-family: "foka3";
    src: url("font/FreeSansBoldOblique.ttf") format("truetype");
  }
  
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
  height: 100vh;
  }
  header {
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.432);
    top: 0;
    left: 0;
    right: 0;
    z-index: 999; /* Memastikan header berada di atas konten lainnya */
  }
  
  .logo-left img,
  .logo-right img {
    width: 50px; /* Sesuaikan ukuran logo */
    height: auto;
    margin: 4px 5px;
  }
  
  .title {
    font-size: 12px;
    text-align: center;
    flex-grow: 1; /* Mengisi ruang kosong di tengah */
    font-family: "Font1", sans-serif; /* Menggunakan Font1, dengan sans-serif sebagai cadangan */
  }

  
/* teak ccss frame web*/
iframe {
    margin: 0 auto;
    width: 100%;
    height: 100vh;
    border: none; /* Hapus border bawaan */
    margin: 20px 0; /* Beri jarak di atas dan di bawah iframe */
  }
  .web-form{
    margin-top: 90px;
  }
  



footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    width: 100%;
    bottom: 0;
    left: 0;
    position: relative; /* Tambahkan ini */
    z-index: 3; /* Tambahkan ini */
  }
  
  .bawah {
   
    width: 100%;
    max-width: 1200px; /* Optional: jika Anda ingin batasi lebar maksimum */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-left p {
    margin: 0 auto;
  }
  .footer-left p a{
    text-decoration: none;
    color: rgb(59, 193, 255);
  }
  .footer-left p a:hover{
    color: white;
  }
  .footer-right nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
  }
  
  .footer-right nav ul li {
    margin-right: 20px;
  }
  
  .footer-right nav ul li:last-child {
    margin-right: 0;
  }
  
  .footer-right nav ul li a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-right nav ul li a:hover {
    text-decoration: underline;
  }
  @media (max-width : 600px){
    .bawah {
        flex-direction: column;
        text-align: center;
        margin-top: 30px;
      }
      .footer-left,
      .footer-right {
        width: 100%;
        margin-bottom: 15px;
      }
    
      .footer-right nav ul {
        justify-content: center;
      }
    
      .footer-right nav ul li {
        margin: 0 10px;
      }
  }
  @media (max-width: 440px){
    .logo-left img,
    .logo-right img {
      width: 40px; /* Sesuaikan ukuran logo */
    }
  
    .title {
      font-size: 11px;
    }
    .bawah {
        flex-direction: column;
        text-align: center;
        margin-top: 30px;
      }
    
      .footer-left,
      .footer-right {
        width: 100%;
        margin-bottom: 15px;
      }
    
      .footer-right nav ul {
        justify-content: center;
      }
    
      .footer-right nav ul li {
        margin: 0 10px;
      }
  }