* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    text-align: center;
    color: white;
    overflow: hidden;
    position: relative;
  }
  
  .container {
    max-width: 80%;
    animation: fadeIn 1.5s ease-in-out;
    position: relative;
    z-index: 2;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: scale(0.9);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  h1 {
    font-size: 110px;
    color: #ff4757;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 71, 87, 0.8);
  }
  
  h2 {
    font-size:75px;
  }
  p {
    margin-bottom: 15px;
  }
  
  .profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #ff4757;
  }
  
  
  canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  