
body, html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: Arial, sans-serif;
  }
  .header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
  }
  .project {
    margin: 100px 20px 50px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
  }
  .project:hover {
    transform: translateY(-10px);
  }
  .project-title {
    font-size: 20px;
    color: #007BFF;
  }
  .project-desc {
    margin-top: 10px;
  }
  .project-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
  }
  .project-link:hover {
    background-color: #0056b3;
  }
