body{
	padding: 0; 
	margin: 0; 
	box-sizing: border-box; 
	font-family: 'Oswald', sans-serif;"
	}
	
@media only screen and (max-width: 600px) {
	
	.header_top{
		height: 130px;
	}
	
	.header_middle{
		height: 130px;
	}
	
	.go_to{
		font-size: 1rem;
		padding: 0px;
	}
}



.gallery {
    text-align: center;
}

#main-image {
    width: 80%;
    height: auto;
    margin-bottom: 10px;
}

.thumbnail-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.thumbnail {
    width: 60px;
    height: 60px;
    cursor: pointer;
    object-fit: cover;
}

.photo-gallery {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
}

.photo-gallery .container {
    max-width: 1200px;
    margin: 0 auto;
}

.photo-gallery h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* RWD dla mniejszych ekranów */
@media (max-width: 768px) {
    .photo-gallery h2 {
        font-size: 1.5rem;
    }
}