body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
  }

  a {
    text-decoration: none;
  }

  li {
    list-style: none;
  }

  img {
    width: 100%;
  }

  section {
    padding: 3rem 0 2rem;
  }

  .container {
    max-width: 1068px;
    margin: auto;
    width: 100%;
  }

  /* Header */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    background-color: rgb(253, 151, 27);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 4px 8px rgba(210, 247, 3, 0.986);
    margin-bottom: 1000px;
  }

  .logo {
    display: flex;
    align-items: center;
  }

  .logo img {
    width: 120px; /* Ubah ukuran logo menjadi lebih besar */
    margin-right: 10px;
  }

  .mylogo {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(237, 243, 244);
  }

  .nav-links {
    display: flex;
    gap: 20px;
    margin-right: 35px;
  }

  .nav-links a {
    color: #f5f0f0;
    font-weight: 500;
    transition: 0.3s;
  }

  .nav-links a:hover {
    color: rgb(39, 224, 237);
  }

  .cta-button {
    padding: 8px 14px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 4px;
    background: rgb(6, 179, 170);
    color: white;
    border-radius: 10px;
  }

  .cta-button:hover {
    background-color: rgb(225, 182, 65);
    transition: 0.3s;
  }

  /* Content */
  h1 {
    margin-top: 100px;
  }

  hr {
    width: 80%;
    margin: auto;
    margin-top: 20px;
    border-color: #ddd;
  }

  img.profile {
    width: 300px;
    border-radius: 50%;
    margin-top: 20px;
  }

  table {
    width: 80%;
    margin: auto;
    border-collapse: collapse;
    margin-top: 20px;
  }

  th,
  td {
    border: 1px solid #ddd;
    padding: 10px;
  }

  th {
    background-color: #10b5a7;
    color: #f5dfa2;
  }

  body {
    background-image: url('FOTO  3.jpg');
    background-size: cover;
  }

  footer {
    padding: 20px;
    background-color: #10b5a7;
    color: white;
    text-align: center;
  }

  footer a {
    color: #ffd700;
  }

  footer a:hover {
    text-decoration: underline;
  }