body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #fff;
    overflow: hidden;
  }
  
  .burger {
    position: fixed;
    top: 20px;
    left: 20px;
    background-color: #fff;
    border: 2px solid #ff5f1f;
    color: #000;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 6px;
    z-index: 2;
    box-shadow: 3px 0 15px rgba(0, 0, 0, 0.4); 
  }

  .burger:hover{
    background-color: #ff5f1f;
    border: 2px solid #000;
    border-radius: 6px;
    color: #fff;
  }
  
  .sidebar {
    position: fixed;
    top: 0;
    left: -200px;
    width: 200px;
    height: 100%;
    background: linear-gradient(135deg, #ff5f1f, #2E2E2E); /* gradient */
    padding-top: 60px;
    transition: 0.3s;
    z-index: 3;
    box-shadow: 3px 0 15px rgba(0, 0, 0, 0.4); 
  }
  
  .sidebar a {
    display: block;
    color: #ffffff;
    padding: 16px;
    text-decoration: none;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
  }
  
  .sidebar a:hover {
    background-color: #fff;
    color: #000;
  }
  
  .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
  }
  
  .main-content {
    text-align: center;
    padding-top: 100px;
    position: relative;
    z-index: 1;
  }
  
  h1 {
    color: #000;
    font-size: 3rem;
    border: 2px solid #ff5f1f;
    border-radius: 12px;
    padding: 15px 25px;
    display: inline-block;
    background-color: #fff;
    box-shadow: 3px 0 15px rgba(0, 0, 0, 0.4);
  }
  
  .github {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #fff;
    border: 2px solid #ff5f1f;
    color: #000;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 6px;
    z-index: 2;
    box-shadow: 3px 0 15px rgba(0, 0, 0, 0.4); 
    font-weight: bold;
  }

  .github:hover{
    background-color: #ff5f1f;
    border: 2px solid #000;
    border-radius: 6px;
    color: #fff;
  }


  p {
    color: #000;
    font-size: 1.2rem;
  }
  
  #floating-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Put canvas behind all content */
    pointer-events: none; /* Let clicks go through */
  }
  
  
  