body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    color: #0c0c0c;
    overflow-x: hidden;
  }
  
  /* Header Styles */
  header {
    background-color: #fcfafa;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
  }
  
  .logo {
    font-size: 24px;
    font-weight: bold;
    color: #080808;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #7a7a7a;
    font-size: 18px;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #ffcc00;
  }
  
  .dropdown {
    position: relative;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #111;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    color: #e0e0e0;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-content a:hover {
    background-color: #333;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Hero Section Styles */
  .hero {
    font-family: monospace;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    background: linear-gradient(180deg, #fcfbfb 0%, #faf8f8 100%);
  }
  
  .project-description {
    max-width: 800px;
    margin-bottom: 40px;
  }
  
  .project-description h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #131312;
  }
  
  .project-description p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
  }
  
  .animation-picture img {
    max-width:500px;
    height: 500px;
    margin-top: -220px;
  }
  
  /* Contract Address Section Styles */
  .contract-address {
    padding: 50px 20px;
    text-align: center;
    background-color: #f5f1f1;
    margin-top: 200px;
  }
  
  .contract-address h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffcc00;
  }
  
  .contract-address p {
    font-size: 20px;
    word-wrap: break-word;
  }
  
  /* Footer Styles */
  footer {
    padding: 20px;
    text-align: center;
    background-color: #111;
    color: #e0e0e0;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .project-description h1 {
      font-size: 36px;
    }
  
    .project-description p {
      font-size: 16px;
    }
  
    .contract-address h2 {
      font-size: 24px;
    }
  
    .contract-address p {
      font-size: 18px;
    }
  }