body {
  background: linear-gradient(to bottom,
    #4a4a4a 0%,
    #3a3a3a 35%,
    #222222 70%,
    #000000 100%
  );
  color: #ff0000;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;

  /* 🔥 Kluczowe linijki: */
  min-height: 100vh;       /* gradient na cały ekran */
  background-attachment: fixed; /* gradient nie przesuwa się przy scrollowaniu */
}


h1 {
  font-size: 60px;
  font-weight: bold;
  color: #ff0000;
  border-top: 2px solid #ff0000;
  border-bottom: 2px solid #ff0000;
  display: inline-block;
  margin-top: 60px;
  padding: 10px 0;
}

/* Podtytuł — mały, czerwony */
.subtitle {
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 80px;
  color: #ff0000;
}

/* Sekcja About Us — jak na screenie: tekst po lewej */
.about {
  width: 60%;
  margin: 0 auto;
  text-align: left;
}

/* Nagłówek sekcji */
.about h2 {
  font-size: 28px;
  font-weight: bold;
  color: #ff0000;
  margin-bottom: 10px;
}

/* Tekst sekcji */
.about p {
  font-size: 16px;
  line-height: 1.5;
  color: #ff0000;
}
a:link {
  color: red;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: red;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}
