* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
  }
  
  .container {
    width: 80%;
    margin: 0 auto;
  }
  
  .hero {
    background-color: rgb(0, 0, 0);
    color: #fff;
    text-align: center;
    padding: 100px 0;
  }
  
  .projects .project-card {
    background-color: #fff;
    margin: 20px 0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(254, 254, 254, 0.1);
    transition: all 0.3s ease; /* Menambahkan transisi animasi */
  }
  
  .projects .project-card:hover {
    outline: 3px solid #007bff; /* Outline biru saat hover */
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3); /* Menambahkan efek bayangan saat hover */
  }
  
  .hero h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
  }
  
  .typing-text {
    font-size: 4rem;
    font-weight: bold;
    color: #fff;
    border-right: 5px solid #fff; /* Menambahkan garis vertikal untuk simulasi kursor */
    width: 0;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 4s steps(10) 1s forwards, blink 0.75s step-end infinite;
  }
  
  /* Animasi untuk mengetik */
  @keyframes typing {
    from {
      width: 0;
    }
    to {
      width: 100%;
    }
  }
  
  /* Animasi untuk kursor berkedip */
  @keyframes blink {
    50% {
      border-color: transparent;
    }
  }
  
  .hero p {
    font-size: 1.5rem;
  }
  
  .about, .projects {
    padding: 60px 0;
  }
  
  .projects .project-card {
    background-color: rgb(255, 255, 255);
    margin: 20px 0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .projects .project-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
  }
  
  footer ul {
    list-style: none;
    padding: 0;
  }
  
  footer ul li {
    display: inline-block;
    margin: 0 10px;
  }

  .footer ul li a:hover {
    text-decoration: underline;
  }

  .hengkel {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    font-family: 'Courier New', Courier, monospace; /* Gaya font mirip dengan hacker */
    animation: changeFont 2s infinite, typing 4s steps(44) 1s forwards;
    white-space: nowrap;
    overflow: hidden;
  }
  
  /* Animasi mengganti font secara bergantian */
  @keyframes changeFont {
    0% { font-family: 'Courier New', Courier, monospace; }
    25% { font-family: 'Consolas', monospace; }
    50% { font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;}
    70% { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }