*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
::-webkit-scrollbar {
	width: 15px;
}
::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px rgb(161, 161, 161);
	border-radius: 10px;
}
::-webkit-scrollbar-thumb {
	background: rgb(0, 0, 0);
	border-radius: 10px;
}
body {
	position: relative;
	font-family: 'Montserrat', sans-serif;
	background-color: #fff;
}
.heading_text {
	border: 1px solid #000;
	border-left: none;
	padding: 20px;
	text-align: left;
	margin-top: 20px;
	max-width: 700px;
	animation: slideInFromLeft 0.5s ease-out forwards; /* Użycie animacji */
}
.heading_text h1 {
	font-family: 'Rubik Doodle Shadow', system-ui;
	font-weight: 400;
	font-style: normal;
	font-size: 80px;
	margin-left: 20px;
}
@keyframes slideInFromLeft {
	0% {
		transform: translateX(-100%); /* Początkowe położenie poza ekranem */
		opacity: 0; /* Element niewidoczny na początku */
	}
	100% {
		transform: translateX(0); /* Końcowe położenie na ekranie */
		opacity: 1; /* Pełna widoczność elementu */
	}
}
.lupek_opis {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
}
.types {
	display: flex;
	flex-wrap: wrap;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
.type {
	flex: 30%;
	margin-left: 10px;
	margin-right: 10px;
	margin-top: 50px;
	text-align: center;
	margin-bottom: 30px;
}

.type img {
	width: 100px;
	height: 100px;
	margin-bottom: 20px;
}
.table-style {
	width: 100%;
	border-collapse: collapse;
}
.table-style th,
.table-style td {
	border: 1px solid #ddd;
	padding: 8px;
	text-align: left;
}
.table-style th {
	background-color: #4caf50;
	color: white;
}
.table-style tr:nth-child(even) {
	background-color: #f2f2f2;
}
.table-style tr:hover {
	background-color: #ddd;
}
.table-style th {
	padding-top: 12px;
	padding-bottom: 12px;
}
@media only screen and (max-width: 1300px) {
	.heading {
		display: flex;
		justify-content: center; /* Wyśrodkowanie poziome */
	}
	.heading_text {
		text-align: center;

		border-left: 1px solid #000;
	}
	.lupek_opis {
		margin-left: 10px;
		margin-right: 10px;
	}
}
