/* Parówczaku, trzymaj czystą klatkę: minimalnie, ale konkretnie. */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif
  }
  
  /* Główne opakowanie pod tło i układ strony */
  .page-wrapper {
    background: #000 url('background.svg') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
  }
  
  /* Stylowanie zaznaczenia tekstu */
  ::selection {
    background: #FF2D20;
    color: #fff;
  }
  
  /* Tytuł u góry */
  .page-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #fff; /* mocniejszy kontrast */
  }
  
  /* Stopka z dołu */
  .page-footer {
    position: absolute;
    bottom: 1rem;
    width: 100%;
    text-align: center;
    font-size: 0.875rem; /* ~14px */
    color: rgba(255, 255, 255, 0.7);
  }
  