/* Reset beberapa default styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Gaya umum untuk body */
  body {
    font-family: 'Courier New', monospace;
    background-color: #2e2e2e; /* Background gelap seperti Kali Linux */
    color: #f1f1f1; /* Teks putih untuk kontras dengan latar belakang gelap */
    line-height: 1.6;
  }
  
  /* Gaya header dan navigasi */
  header {
    background-color: #111; /* Latar belakang gelap */
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #333;
  }
  
  header .logo h1 {
    font-size: 2rem;
    color: #1e90ff; /* Warna biru terang ala Kali Linux */
    letter-spacing: 2px;
  }
  
  header .logo h1 a {
    text-decoration: none;
    color: inherit; /* Link menggunakan warna yang sama dengan teks */
  }
  
  nav ul {
    list-style-type: none;
    padding: 10px 0;
  }
  
  nav ul li {
    display: inline;
    margin: 0 15px;
  }
  
  nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
  }
  
  nav ul li a:hover {
    color: #1e90ff; /* Warna biru terang saat hover */
  }
  
  /* Gaya untuk setiap section */
  .section {
    padding: 40px 20px;
    margin: 20px 0;
    background-color: #333;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
  }
  
  h2 {
    color: #1e90ff; /* Biru terang untuk heading */
  }
  
  p {
    font-size: 16px;
    color: #ddd; /* Warna teks lebih terang untuk konten */
  }
  
  a {
    color: #1e90ff;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Tombol */
  .btn {
    background-color: #1e90ff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
  }
  
  .btn:hover {
    background-color: #0f7eff;
  }
  
  /* Gaya footer */
  footer {
    text-align: center;
    padding: 20px;
    background-color: #111;
    color: #999;
    position: fixed;
    width: 100%;
    bottom: 0;
    border-top: 2px solid #333;
  }
  