body {
  background: linear-gradient(
    -45deg,
    #1919b7,
    #702fcb,
    rgb(255, 255, 255),
    #8109d1
  );
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  height: 100vh;
  padding: 5px;
}
header {
  z-index: 30000;
}
a {
  text-decoration: none;
  margin: 16px 0 16px 0;
  color: black;
}
.kartyBlok {
  margin-top: 50px;
}
h2 {
  margin-top: 50px;
}
.container {
  display: inline-block;
  cursor: pointer;
  float: right;
  margin-top: 50px;
  margin-right: 20px;
}
.zajecia {
  display: block;
  margin: 0 auto;
}
.menu {
  display: none;
  text-align: center;
  z-index: 29000;
}
.margines_menu {
  margin-left: 10px;
}

.bar1,
.bar2,
.bar3 {
  width: 35px;
  height: 5px;
  background-color: #333;
  margin: 6px 0;
  transition: 0.4s;
}

.change .bar1 {
  transform: translate(0, 11px) rotate(-45deg);
  background-color: red;
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  transform: translate(0, -11px) rotate(45deg);
  background-color: red;
}
nav {
  text-align: center;
}
.classArticle {
  text-align: center;
  overflow-y: scroll;
  max-height: 600px;
  display: grid;
  grid-template-columns: auto;
}
.classArticle2 {
  text-align: center;
  max-height: 500px;
  display: grid;
  grid-template-columns: auto;
}
.nrTel{
  text-align: center;
}
footer {
  text-align: center;
}
.kartyBlok a {
  display: inline-block;
  background-color: #ffffff89; /* Białe tło */
  color: #000000; /* Czarny kolor tekstu */
  padding: 10px 20px; /* Wielkość wewnętrznego marginesu */
  margin: 10px; /* Odstęp między linkami */
  border: 2px solid #000000; /* Czarne obramowanie */
  border-radius: 5px; /* Zaokrąglenie rogów */
  transition: all 0.3s ease; /* Płynne przejście */
  box-shadow: 5px 5px 10px white;
}

.kartyBlok a:hover {
  background-color: #000000; /* Czarne tło po najechaniu kursorem */
  color: #ffffff; /* Biały kolor tekstu po najechaniu kursorem */
  box-shadow: none;
}

.kartyBlok a:active {
  transform: translateY(2px); /* Efekt wciśnięcia */
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
