/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
background-image: url('tlobuduwka.png');
  background-size: cover; 
  background-position: center;
  background-repeat: repeat;
  color: black;
  font-family: Verdana;
}
.toczekclass {
  background-color: #e0e0e0;
  border: solid grey 1px;
}
.toczekclass2 {
  background-color: #ffb0b4;
  border: solid red 1px;
}
.toczeklogo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px; /* dodaj wysokość */
  width: 100%;   /* zamiast sztywnego 1000px */
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 1));
  background-color: #222; /* tylko do podglądu */
}

.toczeklogo img {
  height: 80px;
  display: block;
}