/* Larger viewports */
@media only screen and (min-width: 65rem) {
	
    #navigation li:first-child{
        display:none;
    }

	nav ul li a {
		padding: .6rem 1rem;
	}
	
    #navigation a{
		font-size: 20px;
	}

/* town informatons*/

#townsData{
	flex-direction: row;

	}

#townsData article{
	flex-direction:column;
	align-items: center;
}
#townsData article:nth-child(odd){
	flex-direction: column;
}


#townsData img{
	width: 100%;
	align-items: center;
}

#townData p{
	text-align: center;
}


/*gallery page*/
.gallery{
	display: grid;
	height: auto;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;

}

.gallery h2{
	display: block;
	font-size: 2em;
	grid-column: 1/ -1;

}

.gallery figure img{
		width: 100%;
		padding: 0;
		
}

 figure img[data-src] {
	filter: blur(0.2em);
  }

.gallery figure{
	justify-self: center;
	transition-duration: 3s, 3s;
	filter: blur(0em);				
}

figure:hover {
	box-shadow: 8px 10px 46px 12px rgba(0,0,0,0.75);
	transform: rotate(360deg);
	transition-timing-function: ease-in-out;
}

.gallery figcaption{
	text-align: center;
}

}
