@font-face {                  
font-family: 'MachineLearning';
src: url(https://humantooth.neocities.org/fonts/MachineLearningFont-v1.woff) format('woff');
font-weight: normal;
font-style: normal;
} 

  body {
    background: #0c0618;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto; 
    font-family: 'MachineLearning';
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .star-container {
    width: 150vw;    
    height: 150vh;  
    background: linear-gradient(145deg, #4c1d95, #7c3aed, #6d28d9);
    clip-path: polygon(50.0% -20.0%, 71.2% 20.9%, 116.6% 28.4%, 84.2% 61.1%, 91.1% 106.6%, 50.0% 86.0%, 8.9% 106.6%, 15.8% 61.1%, -16.6% 28.4%, 28.8% 20.9%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10%;
    position: relative;
    z-index: -1;
    box-shadow: inset 0 0 100px rgba(167, 139, 250, 0.2);
  }
        
        
  .star-content {
    max-width: 400px;
    color: #f0e6ff;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
    background: rgba(255, 255, 255, 0.06); 
    padding: 2rem;
    border-radius: 16px;
  }

  .star-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .star-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ddd6fe;
  }
        
        
        
  #starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
  }

  .twinkle-star {
    position: absolute;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
    animation: twinkleSlow var(--duration) ease-in-out infinite alternate;
  }

  @keyframes twinkleSlow {
    0% { 
      opacity: 0.15;
      transform: scale(0.6);
    }
    100% { 
      opacity: 0.9;
      transform: scale(1.2);
    }
  }