body {
  font-family: Tahoma, sans-serif;
  background-image: linear-gradient(rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25)), url(img/logo.bmp);
  background-repeat: no-repeat, repeat;
  background-attachment: fixed, scroll;
}

table {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

td {
  position: relative;
  /* border: 1px solid red; */
}

tr:nth-of-type(1) td .tytul-h4 {
  color: rgba(0, 0, 0, 0.25);
}

tr:nth-of-type(2) td {
  text-align: left;
  color: rgba(0, 0, 0, 0.25);
}

tr:nth-of-type(3) td {
  text-align: left;
}

tr:nth-of-type(4) td {
  padding: 10px 0;
  font-size: 80%;
}

li { 
  margin-bottom: 6px;
}

a:link,
a:visited {
  color: blue;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.tytul-h1 {
  margin: 0.67em 0;
  font-size: 2.00em;
  font-weight: bold;
}

.tytul-h3 {
  margin: 1.00em 0;
  font-size: 1.17em;
  font-weight: bold;
}

.tytul-h4 {
  margin: 1.33em 0;
  font-size: 1.00em;
  font-weight: bold;
}

.przycisk {
  display: flex;
  align-items: center;
  width: 200px;
  margin: 20px auto;
  padding: 12px 8px 8px 8px;
  border: 1px solid black;
  border-radius: 10px;
  cursor: pointer;
}

.przycisk span:nth-child(1) {
  width: 50px;
  margin-right: 8px;
}

.przycisk span:nth-child(2) {
  width: 100%;
}

.przycisk:hover {
  background-color: #e7e7e7;
  box-shadow:0 4px 8px 0 rgba(0,0,0,0.6);
  transition-duration: 0.4s;
}

#komunikat {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%) rotate(-30deg); /* Środkowanie i obrót o 45 stopni */
  text-align: center;
  color: rgba(255, 0, 0, 0.75); /* Czerwony */
  font-size: 28px;
  font-weight: bold;
  white-space: nowrap;
  pointer-events: none; /* Sprawia, że tekst pod spodem można nadal kliknąć/zaznaczyć. */
}

#komunikat-old {
  display: none;
  margin-top: 10px;
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.2;
  color: rgba(255, 0, 0, 0.8);
}