body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #e30428;
    font-family: 'Courier New', monospace;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
  }
  
  .noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/glitch.gif');
    background-size: cover;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
  }
  
  .content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  img {
    width: 300px;
    max-width: 90vw;
    margin-bottom: 2rem;
  }
  
  .terminal {
    font-size: 1.2rem;
    white-space: pre;
  }
  
  .cursor {
    display: inline-block;
    width: 1ch;
    animation: blink 1s step-start infinite;
  }
  
  @keyframes blink {
    50% { opacity: 0; }
  }
  