*,
*::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 */
	}
}
.gallery {
	display: flex;
	flex-wrap: wrap;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
}
.gallery_window {
	flex: 30%;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 50px;
}
.gallery_window:hover {
	box-shadow: 0px 0 10px #000;
}
.gallery_description {
	text-align: center;
	margin-top: 50px;
}
.gallery_description p {
	font-size: 30px;
}
.gallery_window img {
	width: 100%;
}
.gallery_window h3 {
	text-align: center;
	margin-top: 20px;
	font-weight: bold;
}
.gallery_window a {
	color: #000;
}
.gallery_window a:hover {
	color: #000;
}
@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;
	}
	.heading_text h1 {
		font-size: 40px;
		margin-left: 0px;
	}
	.gallery {
		flex-direction: column;
	}
	.gallery_description {
		margin-left: 20px;
		margin-right: 20px;
	}
}
