    body {
      margin: 0;
      padding: 0;
      background-color: #543310;
      color: #F8F4E1;
      font-family: monospace;
    }

    .container {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 60px;
      height: 100vh;
      padding: 0 50px;
      background-color: #543310; 
      font-family: monospace;
      color: #F8F4E1;
    }

    .content {
      max-width: 600px;
    }

    .heading-line {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
    }

    .heading-line h1 {
      font-size: 1.8rem;
      margin: 0;
    }

    .hash {
      color: #AF8F6F;
    }

    .highlight {
      color: #F8F4E1;
    }

    .line {
      flex-grow: 1;
      height: 1px;
      background-color: #AF8F6F;
    }

    .content p {
      font-size: 14px;
      line-height: 1.6;
    }

    .message-box {
      border: 1px solid #ffffff40;
      padding: 25px 30px;
      border-radius: 15px;
      background-color: transparent;
      min-width: 250px;
      margin-top: 55px;
    }

    .message-box h3 {
      margin-top: 0;
      margin-bottom: 20px;
      font-weight: bold;
      font-size: 1.1rem;
      text-align: center;
    }

    .contact-info .item {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
      font-size: 14px;
    }

    .icon {
      font-size: 16px;
    }

    .navbar {
      position: fixed;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      background-color: #543310; 
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;
      border: 2px solid #c8b7a6;
      border-bottom: none;
      padding: 6px 150px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: fit-content;
      gap: 75px;
    }
    
    .icon img {
      width: 200px;
      height: 24px;
      filter: brightness(0) invert(1);
    }

    .profile {
      margin-right: 40px;
      flex-shrink: 0;
    }
    
    .profile img {
      width: 200px;
      height: 200px;
      object-fit: cover;
      border-radius: 50%;
      border: 6px solid #AF8F6F;
      box-shadow: 0 0 10px #00000050;
    }
    
    .project-section {
      padding: 60px 30px;
      background-color: #543310;
      color: #F8F4E1;
      font-family: monospace;
    }
    
    .project-heading {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 40px;
    }
    
    .project-heading h2 {
      font-size: 1.5rem;
      margin: 0;
      color: #F8F4E1;
    }
    
    .project-line {
      flex-grow: 1;
      height: 1px;
      background-color: #AF8F6F;
    }
    
    .project-hash {
      color: #AF8F6F;
    }
    
    .projects-masonry {
      column-count: 2; 
      column-gap: 25px;
      max-width: 1000px;
      margin: 0 auto;
    }
    
    
    .project-card {
      background-color: transparent;
      border: 1px solid #ffffff40;
      border-radius: 10px;
      padding: 20px;
      display: inline-block;
      margin-bottom: 25px;
      width: 100%;
      box-sizing: border-box;
    }
    
    .project-card small {
      font-size: 12px;
      color: #c8b7a6;
      display: block;
      margin-bottom: 10px;
    }
    
    .project-card h3 {
      font-size: 1rem;
      margin: 0 0 10px;
      color: #F8F4E1;
    }
    
    .project-card p {
      font-size: 14px;
      color: #e8d8c0;
      margin-bottom: 20px;
      line-height: 1.5;
    }
    
    .project-card button {
      background-color: transparent;
      border: 1px solid #F8F4E1;
      color: #F8F4E1;
      font-family: monospace;
      padding: 6px 10px;
      font-size: 13px;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    
    .project-card button:hover {
      background-color: #F8F4E1;
      color: #543310;
    }