.main-index {
    padding: 2rem;
    background-color: #f9f9f9; /* Jasne tło */
  }
  
  .main-index__text {
    max-width: 800px;
    margin: 0 auto; /* Wyśrodkowanie tekstu */
    text-align: center;
  }
  
  .main-index h2 {
    font-size: 2rem;
    color: #333;
  }
  
  .main-index p {
    font-size: 1.2rem;
    color: #555;
    margin-top: 0.5rem;
  }
  
  /* Media query dla urządzeń o szerokości max 480px */
  @media (max-width: 480px) {
    .main-index h2 {
      font-size: 1.8rem;
    }
  
    .main-index p {
      font-size: 1rem;
    }
  }
  