
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    background-color: #0f0f0f;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 1rem;
    color: #00ffff;
  }
  
  .typewriter {
    font-size: 1.8rem;
    font-weight: 500;
    font-family: 'Courier New', Courier, monospace;
    border-right: .15em solid #00ffff;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    animation:
      typing 3s steps(25, end) forwards,
      blink-caret .75s step-end infinite;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  @keyframes typing {
    from { width: 0 }
    to { width: 20ch }
  }
  
  @keyframes blink-caret {
    0%, 100% { border-color: transparent }
    50% { border-color: #00ffff }
  }
  
  .image-container {
    max-width: 100%;
    max-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .image-container img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    transition: transform 0.3s ease;
  }
  
  .image-container img:hover {
    transform: scale(1.02);
  }
  
  .description {
    max-width: 800px;
    text-align: center;
    margin-top: 1.5rem;
    color: #bbbbbb;
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 1rem;
    font-style: italic;
    opacity: 0.85;
  }
  
  .copyright {
    margin-top: 3rem;
    text-align: center;
    font-size: 0.9rem;
    color: #aaaaaa;
  }